Fix drivers In operator error message

This commit is contained in:
Vivek Patel
2022-12-21 21:28:57 +05:30
parent 2eb8190b94
commit accda2e0cb
@@ -192,5 +192,5 @@ func opHandlerIn(d Dialect, n *ql.ASTNode, negate bool, args ...exp.Expression)
return
}
return nil, fmt.Errorf("unsupported IN operator")
return nil, fmt.Errorf("unsupported IN operator on a single value field")
}