diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2021-01-05 19:03:56 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2021-01-05 19:03:56 -0500 |
commit | 14d49f483d4c8a5a356e25d5e5ff5726ca43abff (patch) | |
tree | ba4ac7f4b3c354b5cb9e3aaeb7c247cf5ce85b70 /src | |
parent | 7d80441d2c8de5cd5d593e302bd14e8b19ee92d4 (diff) | |
download | postgresql-14d49f483d4c8a5a356e25d5e5ff5726ca43abff.tar.gz postgresql-14d49f483d4c8a5a356e25d5e5ff5726ca43abff.zip |
Revert unstable test cases from commit 7d80441d2.
I momentarily forgot that the "owner" column wouldn't be stable
in the buildfarm. Oh well, these tests weren't very valuable
anyway.
Discussion: https://postgr.es/m/20201130165436.GX24052@telsasoft.com
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/expected/psql.out | 14 | ||||
-rw-r--r-- | src/test/regress/sql/psql.sql | 2 |
2 files changed, 0 insertions, 16 deletions
diff --git a/src/test/regress/expected/psql.out b/src/test/regress/expected/psql.out index d3134ecb2f4..7204fdb0b43 100644 --- a/src/test/regress/expected/psql.out +++ b/src/test/regress/expected/psql.out @@ -4895,20 +4895,6 @@ Owning table: "pg_catalog.pg_statistic" Indexes: "pg_toast_2619_index" PRIMARY KEY, btree (chunk_id, chunk_seq) -\dt pg_toast.pg_toast_2619 - List of relations - Schema | Name | Type | Owner -----------+---------------+-------------+---------- - pg_toast | pg_toast_2619 | TOAST table | postgres -(1 row) - -\di pg_toast.pg_toast_2619_index - List of relations - Schema | Name | Type | Owner | Table -----------+---------------------+-------+----------+--------------- - pg_toast | pg_toast_2619_index | index | postgres | pg_toast_2619 -(1 row) - -- check printing info about access methods \dA List of access methods diff --git a/src/test/regress/sql/psql.sql b/src/test/regress/sql/psql.sql index 2cb9da8bff9..537d5332aa9 100644 --- a/src/test/regress/sql/psql.sql +++ b/src/test/regress/sql/psql.sql @@ -1210,8 +1210,6 @@ drop role regress_partitioning_role; -- \d on toast table (use pg_statistic's toast table, which has a known name) \d pg_toast.pg_toast_2619 -\dt pg_toast.pg_toast_2619 -\di pg_toast.pg_toast_2619_index -- check printing info about access methods \dA |