Fix drivers In operator error message

This commit is contained in:
Vivek Patel
2022-12-21 17:03:25 +01:00
committed by Jože Fortun
parent 676e92216c
commit 57c44a7d18
@@ -200,5 +200,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")
}