當前位置: 首頁>>代碼示例>>Golang>>正文


Golang UnaryOperationExpr.SetValue方法代碼示例

本文整理匯總了Golang中github.com/pingcap/tidb/ast.UnaryOperationExpr.SetValue方法的典型用法代碼示例。如果您正苦於以下問題:Golang UnaryOperationExpr.SetValue方法的具體用法?Golang UnaryOperationExpr.SetValue怎麽用?Golang UnaryOperationExpr.SetValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/pingcap/tidb/ast.UnaryOperationExpr的用法示例。


在下文中一共展示了UnaryOperationExpr.SetValue方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: unaryOperation

func (e *Evaluator) unaryOperation(u *ast.UnaryOperationExpr) bool {
    defer func() {
        if er := recover(); er != nil {
            e.err = errors.Errorf("%v", er)
        }
    }()
    a := u.V.GetValue()
    a = types.RawData(a)
    if a == nil {
        u.SetValue(nil)
        return true
    }
    switch op := u.Op; op {
    case opcode.Not:
        n, err := types.ToBool(a)
        if err != nil {
            e.err = errors.Trace(err)
        } else if n == 0 {
            u.SetValue(int64(1))
        } else {
            u.SetValue(int64(0))
        }
    case opcode.BitNeg:
        // for bit operation, we will use int64 first, then return uint64
        n, err := types.ToInt64(a)
        if err != nil {
            e.err = errors.Trace(err)
            return false
        }
        u.SetValue(uint64(^n))
    case opcode.Plus:
        switch x := a.(type) {
        case bool:
            u.SetValue(boolToInt64(x))
        case float32:
            u.SetValue(+x)
        case float64:
            u.SetValue(+x)
        case int:
            u.SetValue(+x)
        case int8:
            u.SetValue(+x)
        case int16:
            u.SetValue(+x)
        case int32:
            u.SetValue(+x)
        case int64:
            u.SetValue(+x)
        case uint:
            u.SetValue(+x)
        case uint8:
            u.SetValue(+x)
        case uint16:
            u.SetValue(+x)
        case uint32:
            u.SetValue(+x)
        case uint64:
            u.SetValue(+x)
        case mysql.Duration:
            u.SetValue(x)
        case mysql.Time:
            u.SetValue(x)
        case string:
            u.SetValue(x)
        case mysql.Decimal:
            u.SetValue(x)
        case []byte:
            u.SetValue(x)
        case mysql.Hex:
            u.SetValue(x)
        case mysql.Bit:
            u.SetValue(x)
        case mysql.Enum:
            u.SetValue(x)
        case mysql.Set:
            u.SetValue(x)
        default:
            e.err = ErrInvalidOperation
            return false
        }
    case opcode.Minus:
        switch x := a.(type) {
        case bool:
            if x {
                u.SetValue(int64(-1))
            } else {
                u.SetValue(int64(0))
            }
        case float32:
            u.SetValue(-x)
        case float64:
            u.SetValue(-x)
        case int:
            u.SetValue(-x)
        case int8:
            u.SetValue(-x)
        case int16:
            u.SetValue(-x)
        case int32:
            u.SetValue(-x)
//.........這裏部分代碼省略.........
開發者ID:mrtoms,項目名稱:tidb,代碼行數:101,代碼來源:evaluator.go


注:本文中的github.com/pingcap/tidb/ast.UnaryOperationExpr.SetValue方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。