diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-03-15 16:27:07 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-03-15 16:27:07 -0400 |
commit | f2a9998fb34c768d8870bd34daa4c298999fee00 (patch) | |
tree | e78f61d9ed903ea45aa4db77361d8cb0d4a93b9e | |
parent | e76db009f079ece9408e37336887bc6457cc1fc6 (diff) | |
download | postgresql-f2a9998fb34c768d8870bd34daa4c298999fee00.tar.gz postgresql-f2a9998fb34c768d8870bd34daa4c298999fee00.zip |
Fix typo
-rw-r--r-- | src/test/regress/expected/publication.out | 2 | ||||
-rw-r--r-- | src/test/regress/sql/publication.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/publication.out b/src/test/regress/expected/publication.out index f3d60db86b2..77482aa522f 100644 --- a/src/test/regress/expected/publication.out +++ b/src/test/regress/expected/publication.out @@ -167,7 +167,7 @@ DROP TABLE testpub_tbl1; t | t | t (1 row) --- faile - must be owner of publication +-- fail - must be owner of publication SET ROLE regress_publication_user_dummy; ALTER PUBLICATION testpub_default RENAME TO testpub_dummy; ERROR: must be owner of publication testpub_default diff --git a/src/test/regress/sql/publication.sql b/src/test/regress/sql/publication.sql index 522c39029e5..347034e9221 100644 --- a/src/test/regress/sql/publication.sql +++ b/src/test/regress/sql/publication.sql @@ -96,7 +96,7 @@ DROP TABLE testpub_tbl1; \dRp+ testpub_default --- faile - must be owner of publication +-- fail - must be owner of publication SET ROLE regress_publication_user_dummy; ALTER PUBLICATION testpub_default RENAME TO testpub_dummy; RESET ROLE; |