We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ce988e commit 66d3d99Copy full SHA for 66d3d99
sql/expression/function/regexp_like.go
@@ -77,7 +77,9 @@ func (r *RegexpLike) Description() string {
77
}
78
79
// Type implements the sql.Expression interface.
80
-func (r *RegexpLike) Type() sql.Type { return types.Int8 }
+func (r *RegexpLike) Type() sql.Type {
81
+ return types.Boolean
82
+}
83
84
// CollationCoercibility implements the interface sql.CollationCoercible.
85
func (r *RegexpLike) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte) {
0 commit comments