diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-03-15 18:06:11 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-03-15 18:06:11 -0400 |
commit | 3aff33aa687e47d52f453892498b30ac98a296af (patch) | |
tree | 61560211d409fd97c6ee8e718fe01c9f5db717c6 /src/test | |
parent | fd658dbb300456b393536802d1145a9cea7b25d6 (diff) |
Fix typos.
Oskari Saarenmaa
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/regress/expected/inherit.out | 4 | ||||
-rw-r--r-- | src/test/regress/expected/replica_identity.out | 2 | ||||
-rw-r--r-- | src/test/regress/sql/inherit.sql | 4 | ||||
-rw-r--r-- | src/test/regress/sql/replica_identity.sql | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/test/regress/expected/inherit.out b/src/test/regress/expected/inherit.out index 89b6c1caf47..d8b5b1d44eb 100644 --- a/src/test/regress/expected/inherit.out +++ b/src/test/regress/expected/inherit.out @@ -983,7 +983,7 @@ DETAIL: drop cascades to table inht2 drop cascades to table inhts drop cascades to table inht3 drop cascades to table inht4 --- Test non-inheritable indices [UNIQUE, EXCLUDE] contraints +-- Test non-inheritable indices [UNIQUE, EXCLUDE] constraints CREATE TABLE test_constraints (id int, val1 varchar, val2 int, UNIQUE(val1, val2)); CREATE TABLE test_constraints_inh () INHERITS (test_constraints); \d+ test_constraints @@ -1049,7 +1049,7 @@ Inherits: test_ex_constraints DROP TABLE test_ex_constraints_inh; DROP TABLE test_ex_constraints; --- Test non-inheritable foreign key contraints +-- Test non-inheritable foreign key constraints CREATE TABLE test_primary_constraints(id int PRIMARY KEY); CREATE TABLE test_foreign_constraints(id1 int REFERENCES test_primary_constraints(id)); CREATE TABLE test_foreign_constraints_inh () INHERITS (test_foreign_constraints); diff --git a/src/test/regress/expected/replica_identity.out b/src/test/regress/expected/replica_identity.out index e29e2fba674..60d9a424a1b 100644 --- a/src/test/regress/expected/replica_identity.out +++ b/src/test/regress/expected/replica_identity.out @@ -65,7 +65,7 @@ SELECT relreplident FROM pg_class WHERE oid = 'test_replica_identity'::regclass; (1 row) ---- --- Make sure index cases succeeed +-- Make sure index cases succeed ---- -- succeed, primary key ALTER TABLE test_replica_identity REPLICA IDENTITY USING INDEX test_replica_identity_pkey; diff --git a/src/test/regress/sql/inherit.sql b/src/test/regress/sql/inherit.sql index 793c2163768..b307a5049bf 100644 --- a/src/test/regress/sql/inherit.sql +++ b/src/test/regress/sql/inherit.sql @@ -299,7 +299,7 @@ SELECT a.attrelid::regclass, a.attname, a.attinhcount, e.expected DROP TABLE inht1, inhs1 CASCADE; --- Test non-inheritable indices [UNIQUE, EXCLUDE] contraints +-- Test non-inheritable indices [UNIQUE, EXCLUDE] constraints CREATE TABLE test_constraints (id int, val1 varchar, val2 int, UNIQUE(val1, val2)); CREATE TABLE test_constraints_inh () INHERITS (test_constraints); \d+ test_constraints @@ -321,7 +321,7 @@ ALTER TABLE test_ex_constraints DROP CONSTRAINT test_ex_constraints_c_excl; DROP TABLE test_ex_constraints_inh; DROP TABLE test_ex_constraints; --- Test non-inheritable foreign key contraints +-- Test non-inheritable foreign key constraints CREATE TABLE test_primary_constraints(id int PRIMARY KEY); CREATE TABLE test_foreign_constraints(id1 int REFERENCES test_primary_constraints(id)); CREATE TABLE test_foreign_constraints_inh () INHERITS (test_foreign_constraints); diff --git a/src/test/regress/sql/replica_identity.sql b/src/test/regress/sql/replica_identity.sql index 1ea3e808866..20b682685e9 100644 --- a/src/test/regress/sql/replica_identity.sql +++ b/src/test/regress/sql/replica_identity.sql @@ -44,7 +44,7 @@ ALTER TABLE test_replica_identity REPLICA IDENTITY USING INDEX test_replica_iden SELECT relreplident FROM pg_class WHERE oid = 'test_replica_identity'::regclass; ---- --- Make sure index cases succeeed +-- Make sure index cases succeed ---- -- succeed, primary key |