diff options
author | Alvaro Herrera | 2020-03-31 19:37:24 +0000 |
---|---|---|
committer | Alvaro Herrera | 2020-03-31 19:43:14 +0000 |
commit | 69360b34589bd6dbc7bc58dec718f938167f1071 (patch) | |
tree | bc46cb2d68b12f92c1e00ec8475d2291edce775f | |
parent | b0236508d3589a45e574284cd3303b689111765d (diff) |
Remove header noise from test_decoding test
Use psql's expanded output to avoid a pointless header.
Kyotaro Horiguchi, after an idea of Michael Paquier
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | contrib/test_decoding/expected/ddl.out | 4 | ||||
-rw-r--r-- | contrib/test_decoding/sql/ddl.sql | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/contrib/test_decoding/expected/ddl.out b/contrib/test_decoding/expected/ddl.out index 2c999fd3eb..cf0318f697 100644 --- a/contrib/test_decoding/expected/ddl.out +++ b/contrib/test_decoding/expected/ddl.out @@ -723,8 +723,8 @@ SELECT pg_drop_replication_slot('regression_slot'); (1 row) /* check that the slot is gone */ +\x SELECT * FROM pg_replication_slots; - slot_name | plugin | slot_type | datoid | database | temporary | active | active_pid | xmin | catalog_xmin | restart_lsn | confirmed_flush_lsn ------------+--------+-----------+--------+----------+-----------+--------+------------+------+--------------+-------------+--------------------- (0 rows) +\x diff --git a/contrib/test_decoding/sql/ddl.sql b/contrib/test_decoding/sql/ddl.sql index 856495c952..0f2b9992f7 100644 --- a/contrib/test_decoding/sql/ddl.sql +++ b/contrib/test_decoding/sql/ddl.sql @@ -387,4 +387,6 @@ SELECT data FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'inc SELECT pg_drop_replication_slot('regression_slot'); /* check that the slot is gone */ +\x SELECT * FROM pg_replication_slots; +\x |