We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
if string is a constant expr not containing any variable, the result is wrong for example
rawYQL = "3>1" result, err = yql.Match(rawYQL, map[string]interface{}{}) fmt.Println(rawYQL, "is ", result, "err: ", err) # Output: 3>1 is false err: <nil>
expect result is true
The text was updated successfully, but these errors were encountered:
Do you have expected time fixing this bug ?
otherwise, I think we can add a parameter to config whether to ignore upper or lower in expr
Sorry, something went wrong.
caibirdme
No branches or pull requests
if string is a constant expr not containing any variable, the result is wrong
for example
expect result is true
The text was updated successfully, but these errors were encountered: