Changeset: 74824452413f for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/74824452413f Modified Files: sql/test/BugTracker-2025/Tests/7691-slow-query-on-allways-false.test Branch: Dec2025 Log Message:
Speedup test significantly by reducing the size of the test table. diffs (12 lines): diff --git a/sql/test/BugTracker-2025/Tests/7691-slow-query-on-allways-false.test b/sql/test/BugTracker-2025/Tests/7691-slow-query-on-allways-false.test --- a/sql/test/BugTracker-2025/Tests/7691-slow-query-on-allways-false.test +++ b/sql/test/BugTracker-2025/Tests/7691-slow-query-on-allways-false.test @@ -2,7 +2,7 @@ statement ok create table test(value int, name string) statement ok -insert into test (select i, cast(i as string) from generate_series(0, 10000000) i(i)) +insert into test (select i, cast(i as string) from generate_series(0, 100000) i(i)) # optimize the base table away ! query T python .plan.filter _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
