File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2939,7 +2939,7 @@ public static void test_query_progress() throws Exception {
2939
2939
ExecutorService executorService = Executors .newSingleThreadExecutor ();
2940
2940
Future <QueryProgress > future = executorService .submit (() -> {
2941
2941
try {
2942
- Thread .sleep (3500 );
2942
+ Thread .sleep (3000 );
2943
2943
QueryProgress qp = stmt .getQueryProgress ();
2944
2944
stmt .cancel ();
2945
2945
return qp ;
@@ -2953,7 +2953,7 @@ public static void test_query_progress() throws Exception {
2953
2953
-> stmt .executeQuery (
2954
2954
"WITH RECURSIVE cte AS NOT MATERIALIZED ("
2955
2955
+
2956
- "SELECT * from test_fib1 UNION ALL SELECT cte.i + 1, cte.f, cte.p + cte.f from cte WHERE cte.i < 150000 ) "
2956
+ "SELECT * from test_fib1 UNION ALL SELECT cte.i + 1, cte.f, cte.p + cte.f from cte WHERE cte.i < 200000 ) "
2957
2957
+ "SELECT avg(f) FROM cte" ),
2958
2958
SQLException .class );
2959
2959
You can’t perform that action at this time.
0 commit comments