-
Notifications
You must be signed in to change notification settings - Fork 508
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IN usage issues #79
Comments
+1 I have the same question as I cannot create an array which holds only one item. |
+1 |
It works if I pass the array parameter as a |
+1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some simple tests:
'test' in ('test','')
- work fine'test' in ('test')
- error: Value 'test' cannot be used with the comparator 'in', it is not a number'test' in test
with parametersgovaluate.MapParameters{"test": []string{"test"}}
- Value '[test]' cannot be used with the comparator 'in', it is not a number'test' in test
with parametersgovaluate.MapParameters{"test": "('test','')"
- Value '('test','')' cannot be used with the comparator 'in', it is not a numberHow to use 'IN' operator with array parameters?
The text was updated successfully, but these errors were encountered: