From e2dbd63345c584de75173c27951f111249ae0016 Mon Sep 17 00:00:00 2001 From: Tristan Partin Date: Thu, 16 May 2024 14:40:25 -0500 Subject: [PATCH] Revert "Drop unlogged table in regress test to avoid noise in tests" This reverts commit 04212240f571a0adb19d1aee63321e3c8ace0e8f. We can just filter the files to compare in test_pg_regress instead. --- src/test/regress/expected/spgist.out | 3 --- src/test/regress/sql/spgist.sql | 3 --- 2 files changed, 6 deletions(-) diff --git a/src/test/regress/expected/spgist.out b/src/test/regress/expected/spgist.out index c371e04a795..2e911285600 100644 --- a/src/test/regress/expected/spgist.out +++ b/src/test/regress/expected/spgist.out @@ -94,6 +94,3 @@ select box(point(i,j)) from generate_series(1,100,5) i, generate_series(1,10,5) j; -- leave this table around, to help in testing dump/restore --- NEON: In Neon unlogged tables are wiped away on node restart --- so drop the table to keep Neon tests clean. -drop table spgist_unlogged_tbl; diff --git a/src/test/regress/sql/spgist.sql b/src/test/regress/sql/spgist.sql index 9d6394516a2..4828ede68c3 100644 --- a/src/test/regress/sql/spgist.sql +++ b/src/test/regress/sql/spgist.sql @@ -89,6 +89,3 @@ select box(point(i,j)) from generate_series(1,100,5) i, generate_series(1,10,5) j; -- leave this table around, to help in testing dump/restore --- NEON: In Neon unlogged tables are wiped away on node restart --- so drop the table to keep Neon tests clean. -drop table spgist_unlogged_tbl;