zstan commented on code in PR #2955:
URL: https://github.com/apache/ignite-3/pull/2955#discussion_r1427654486


##########
modules/runner/src/integrationTest/java/org/apache/ignite/internal/benchmark/SelectBenchmark.java:
##########
@@ -122,6 +138,19 @@ public void jdbcGet(JdbcState state) throws SQLException {
         }
     }
 
+    /**
+     * Benchmark for JDBC script get.
+     */
+    @Benchmark
+    public void jdbcGetScript(JdbcState state) throws SQLException {
+        state.stmt.setInt(1, random.nextInt(TABLE_SIZE));
+        state.stmt.execute();
+
+        try (ResultSet r = state.stmt.getResultSet()) {
+            r.next();

Review Comment:
   lets add Blackhole here too ?



-- 
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]

Reply via email to