diff options
Diffstat (limited to 'src/test/regress')
-rw-r--r-- | src/test/regress/expected/alter_table.out | 2 | ||||
-rw-r--r-- | src/test/regress/expected/create_procedure.out | 2 | ||||
-rw-r--r-- | src/test/regress/sql/alter_table.sql | 2 | ||||
-rw-r--r-- | src/test/regress/sql/create_procedure.sql | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/test/regress/expected/alter_table.out b/src/test/regress/expected/alter_table.out index 9e5f6c1a804..97bfc3475b6 100644 --- a/src/test/regress/expected/alter_table.out +++ b/src/test/regress/expected/alter_table.out @@ -2566,7 +2566,7 @@ select * from at_view_2; drop view at_view_2; drop view at_view_1; drop table at_base_table; --- check adding a column not iself requiring a rewrite, together with +-- check adding a column not itself requiring a rewrite, together with -- a column requiring a default (bug #16038) -- ensure that rewrites aren't silently optimized away, removing the -- value of the test diff --git a/src/test/regress/expected/create_procedure.out b/src/test/regress/expected/create_procedure.out index 46c827f9791..f2a677fa552 100644 --- a/src/test/regress/expected/create_procedure.out +++ b/src/test/regress/expected/create_procedure.out @@ -100,7 +100,7 @@ SELECT * FROM cp_test ORDER BY b COLLATE "C"; 1 | xyzzy (4 rows) --- utitlity functions currently not supported here +-- utility functions currently not supported here CREATE PROCEDURE ptestx() LANGUAGE SQL BEGIN ATOMIC diff --git a/src/test/regress/sql/alter_table.sql b/src/test/regress/sql/alter_table.sql index f58b2f75d5b..b5d57a771ae 100644 --- a/src/test/regress/sql/alter_table.sql +++ b/src/test/regress/sql/alter_table.sql @@ -1635,7 +1635,7 @@ drop view at_view_2; drop view at_view_1; drop table at_base_table; --- check adding a column not iself requiring a rewrite, together with +-- check adding a column not itself requiring a rewrite, together with -- a column requiring a default (bug #16038) -- ensure that rewrites aren't silently optimized away, removing the diff --git a/src/test/regress/sql/create_procedure.sql b/src/test/regress/sql/create_procedure.sql index 75cc0fcf2a6..35b872779ef 100644 --- a/src/test/regress/sql/create_procedure.sql +++ b/src/test/regress/sql/create_procedure.sql @@ -42,7 +42,7 @@ CALL ptest1s('b'); SELECT * FROM cp_test ORDER BY b COLLATE "C"; --- utitlity functions currently not supported here +-- utility functions currently not supported here CREATE PROCEDURE ptestx() LANGUAGE SQL BEGIN ATOMIC |