From 38829191a7c2a7d7001cfa007f50df7d2de242f3 Mon Sep 17 00:00:00 2001 From: Taimoor Zaeem Date: Sat, 25 Apr 2026 12:16:07 +0500 Subject: [PATCH] test(load): reduce num of tables in errors loadtest The table not found error only generates hint when the total number of tables in a schema are less than 500. Signed-off-by: Taimoor Zaeem --- test/load/errors.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/load/errors.sql b/test/load/errors.sql index cf70ab708..02abc37f3 100644 --- a/test/load/errors.sql +++ b/test/load/errors.sql @@ -1,7 +1,7 @@ \ir fixtures.sql SELECT format('CREATE TABLE test.actors_%s ();', n) -FROM generate_series(1, 20000) n +FROM generate_series(1, 450) n -- 500 is the upper limit for table not found error hint generation \gexec -- TODO add many function for fuzzy search (somehow this is making the loadtest start slow)