xtern commented on code in PR #2846:
URL: https://github.com/apache/ignite-3/pull/2846#discussion_r1409559157
##########
modules/runner/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItSqlMultiStatementTest.java:
##########
@@ -117,13 +108,16 @@ void queryWithDynamicParameters() {
+ "INSERT INTO test VALUES(?, DEFAULT);"
+ "INSERT INTO test VALUES(?, ?);";
- fetchAllCursors(runScript(sql, null, 0, "1", 2, 4, "5"));
+ List<AsyncSqlCursor<List<Object>>> cursors =
Review Comment:
Not only for jdbc, we have public API for this.
If you are asking about dynamic parameters - they can be used from the
public API (see for example `Session#executeScript`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]