Skip to content

Commit

Permalink
reduce amount of tables in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dAdAbird committed Dec 17, 2024
1 parent 738e760 commit 12712f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions expected/cache_alloc.out
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ SELECT pg_tde_set_principal_key('test-db-principal-key','file-vault');
do $$
DECLARE idx integer;
begin
for idx in 0..700 loop
for idx in 0..300 loop
EXECUTE format('CREATE TABLE t%s (c1 int) USING tde_heap_basic', idx);
end loop;
end; $$;
DROP EXTENSION pg_tde cascade;
NOTICE: drop cascades to 701 other objects
NOTICE: drop cascades to 301 other objects
DETAIL: drop cascades to table t0
drop cascades to table t1
drop cascades to table t2
Expand Down Expand Up @@ -122,4 +122,4 @@ drop cascades to table t96
drop cascades to table t97
drop cascades to table t98
drop cascades to table t99
and 601 other objects (see server log for list)
and 201 other objects (see server log for list)
2 changes: 1 addition & 1 deletion sql/cache_alloc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SELECT pg_tde_set_principal_key('test-db-principal-key','file-vault');
do $$
DECLARE idx integer;
begin
for idx in 0..700 loop
for idx in 0..300 loop
EXECUTE format('CREATE TABLE t%s (c1 int) USING tde_heap_basic', idx);
end loop;
end; $$;
Expand Down

0 comments on commit 12712f0

Please sign in to comment.