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
Consider the following code:
println("Test1:" + almaUsers .filter(_.id === (List("test'") : Rep[List[String]]).any) .result.statements ) println("Test2:" + almaUsers .filter(_.id === "test'") .result.statements )
which yield:
Test1:List(select "id", "zone" from "alma_user" where "id" = any('{test'}')) Test2:List(select "id", "zone" from "alma_user" where "id" = 'test''')
As you can see, in Test1, the single quote at the end of the value is not doubled (like in Test2) and thus it produces an invalid SQL statement.
The text was updated successfully, but these errors were encountered:
@datalchemist thanks for pointing it out. I'll check it ASAP.
Sorry, something went wrong.
2579ab4
No branches or pull requests
Consider the following code:
which yield:
As you can see, in Test1, the single quote at the end of the value is not doubled (like in Test2) and thus it produces an invalid SQL statement.
The text was updated successfully, but these errors were encountered: