diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-07-12 21:25:36 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-07-12 21:25:36 +0900 |
commit | ea3e15d1691ec4cadc67f160cc91c7f237a705ae (patch) | |
tree | a3436477ca3074cefae68d7d68e20a2232148c66 /src/test/modules/commit_ts/expected/commit_timestamp_1.out | |
parent | b1e48bbe64a411666bb1928b9741e112e267836d (diff) | |
download | postgresql-ea3e15d1691ec4cadc67f160cc91c7f237a705ae.tar.gz postgresql-ea3e15d1691ec4cadc67f160cc91c7f237a705ae.zip |
Fix test failure with -DENFORCE_REGRESSION_TEST_NAME_RESTRICTIONS
Replication origins created by regression tests should have names
starting with "regress_", and the test introduced in b1e48bb for commit
timestamps did not do that.
Per buildfarm member longfin.
Discussion: https://postgr.es/m/20200712122507.GD21680@paquier.xyz
Diffstat (limited to 'src/test/modules/commit_ts/expected/commit_timestamp_1.out')
-rw-r--r-- | src/test/modules/commit_ts/expected/commit_timestamp_1.out | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/modules/commit_ts/expected/commit_timestamp_1.out b/src/test/modules/commit_ts/expected/commit_timestamp_1.out index 02cd651ed93..9a748740813 100644 --- a/src/test/modules/commit_ts/expected/commit_timestamp_1.out +++ b/src/test/modules/commit_ts/expected/commit_timestamp_1.out @@ -74,14 +74,14 @@ SELECT x.timestamp <@ tstzrange('-infinity'::timestamptz, now()) AS ts_in_range, ERROR: could not get commit timestamp data HINT: Make sure the configuration parameter "track_commit_timestamp" is set. -- Test transaction with replication origin -SELECT pg_replication_origin_create('test_commit_ts: get_origin') != 0 +SELECT pg_replication_origin_create('regress_commit_ts: get_origin') != 0 AS valid_roident; valid_roident --------------- t (1 row) -SELECT pg_replication_origin_session_setup('test_commit_ts: get_origin'); +SELECT pg_replication_origin_session_setup('regress_commit_ts: get_origin'); pg_replication_origin_session_setup ------------------------------------- @@ -104,7 +104,7 @@ SELECT pg_replication_origin_session_reset(); (1 row) -SELECT pg_replication_origin_drop('test_commit_ts: get_origin'); +SELECT pg_replication_origin_drop('regress_commit_ts: get_origin'); pg_replication_origin_drop ---------------------------- |