Variable psql table output moved in separate file
This made: - repack.out == repack_2.out - repack_3.out == repack_4.out - repack_1.out == repack_6.out
This commit is contained in:
11
regress/sql/after-schema.sql
Normal file
11
regress/sql/after-schema.sql
Normal file
@ -0,0 +1,11 @@
|
||||
--
|
||||
-- tables schema after running repack
|
||||
--
|
||||
|
||||
\d tbl_cluster
|
||||
\d tbl_gistkey
|
||||
\d tbl_only_ckey
|
||||
\d tbl_only_pkey
|
||||
\d tbl_with_dropped_column
|
||||
\d tbl_with_dropped_toast
|
||||
\d tbl_idxopts
|
@ -147,6 +147,7 @@ INSERT INTO tbl_idxopts VALUES (0, 'abc'), (1, 'aaa'), (2, NULL), (3, 'bbb');
|
||||
INSERT INTO tbl_order SELECT generate_series(100, 51, -1);
|
||||
CLUSTER tbl_order USING tbl_order_pkey;
|
||||
INSERT INTO tbl_order SELECT generate_series(50, 1, -1);
|
||||
|
||||
--
|
||||
-- before
|
||||
--
|
||||
@ -163,18 +164,6 @@ SELECT * FROM tbl_with_dropped_toast;
|
||||
\! pg_repack --dbname=contrib_regression --table=tbl_badindex
|
||||
\! pg_repack --dbname=contrib_regression
|
||||
|
||||
--
|
||||
-- after
|
||||
--
|
||||
|
||||
\d tbl_cluster
|
||||
\d tbl_gistkey
|
||||
\d tbl_only_ckey
|
||||
\d tbl_only_pkey
|
||||
\d tbl_with_dropped_column
|
||||
\d tbl_with_dropped_toast
|
||||
\d tbl_idxopts
|
||||
|
||||
SELECT col1, to_char("time", 'YYYY-MM-DD HH24:MI:SS'), ","")" FROM tbl_cluster ORDER BY 1, 2;
|
||||
SELECT * FROM tbl_only_ckey ORDER BY 1;
|
||||
SELECT * FROM tbl_only_pkey ORDER BY 1;
|
||||
|
Reference in New Issue
Block a user