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
Presto Version: 0.256 JDBC jar Version: 0.256
PREPARE s1 FROM WITH t_a AS ( SELECT * FROM table1 WHERE name = ? ) SELECT * FROM t_a WHERE id > ?
JdbcTemplate and Mybatis handle with left-to-right as they appear
EXECUTE s1 USING 'user', 12
But Presto is expecting
EXECUTE s1 USING 12, 'USER'
PREPARE s1 FROM SELECT * FROM( SELECT * from table1 where name = ? )src where id > ?
Presto is expecting the same order as mybatis is generated
Similar issue in trino has been proposed Wrong parameters order in EXECUTE USING when using with clause
The text was updated successfully, but these errors were encountered:
@va663 Do you have any Solution to that?
Sorry, something went wrong.
No, an alternative was used ><!
No branches or pull requests
env
Presto Version: 0.256
JDBC jar Version: 0.256
If using with clause
JdbcTemplate and Mybatis handle with left-to-right as they appear
But Presto is expecting
If without with clause
Presto is expecting the same order as mybatis is generated
Similar issue in trino has been proposed Wrong parameters order in EXECUTE USING when using with clause
The text was updated successfully, but these errors were encountered: