diff options
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/regress/expected/inherit.out | 6 | ||||
| -rw-r--r-- | src/test/regress/sql/inherit.sql | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/test/regress/expected/inherit.out b/src/test/regress/expected/inherit.out index b0eed9a09e9..3bc4199e118 100644 --- a/src/test/regress/expected/inherit.out +++ b/src/test/regress/expected/inherit.out @@ -2,9 +2,9 @@ -- Test inheritance features -- CREATE TABLE a (aa TEXT); -CREATE TABLE b UNDER a (bb TEXT); -CREATE TABLE c UNDER a (cc TEXT); -CREATE TABLE d UNDER b,c,a (dd TEXT); +CREATE TABLE b (bb TEXT) INHERITS (a); +CREATE TABLE c (cc TEXT) INHERITS (a); +CREATE TABLE d (dd TEXT) INHERITS (b,c,a); INSERT INTO a(aa) VALUES('aaa'); INSERT INTO a(aa) VALUES('aaaa'); INSERT INTO a(aa) VALUES('aaaaa'); diff --git a/src/test/regress/sql/inherit.sql b/src/test/regress/sql/inherit.sql index e1fde48222a..c60a89266ae 100644 --- a/src/test/regress/sql/inherit.sql +++ b/src/test/regress/sql/inherit.sql @@ -2,9 +2,9 @@ -- Test inheritance features -- CREATE TABLE a (aa TEXT); -CREATE TABLE b UNDER a (bb TEXT); -CREATE TABLE c UNDER a (cc TEXT); -CREATE TABLE d UNDER b,c,a (dd TEXT); +CREATE TABLE b (bb TEXT) INHERITS (a); +CREATE TABLE c (cc TEXT) INHERITS (a); +CREATE TABLE d (dd TEXT) INHERITS (b,c,a); INSERT INTO a(aa) VALUES('aaa'); INSERT INTO a(aa) VALUES('aaaa'); |
