예제 #1
0
func (e *Evaluator) parentheses(v *ast.ParenthesesExpr) bool {
	v.SetDatum(*v.Expr.GetDatum())
	return true
}
예제 #2
0
파일: evaluator.go 프로젝트: mrtoms/tidb
func (e *Evaluator) parentheses(v *ast.ParenthesesExpr) bool {
	v.SetValue(v.Expr.GetValue())
	return true
}