diff options
Diffstat (limited to 'src/test/regress/expected/create_table.out')
-rw-r--r-- | src/test/regress/expected/create_table.out | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/regress/expected/create_table.out b/src/test/regress/expected/create_table.out index 3734960691d..7d41ae40ab5 100644 --- a/src/test/regress/expected/create_table.out +++ b/src/test/regress/expected/create_table.out @@ -81,9 +81,9 @@ CREATE TABLE student ( CREATE TABLE stud_emp ( percent int4 ) INHERITS (emp, student); -NOTICE: CREATE TABLE: merging multiple inherited definitions of attribute "name" -NOTICE: CREATE TABLE: merging multiple inherited definitions of attribute "age" -NOTICE: CREATE TABLE: merging multiple inherited definitions of attribute "location" +INFO: CREATE TABLE: merging multiple inherited definitions of attribute "name" +INFO: CREATE TABLE: merging multiple inherited definitions of attribute "age" +INFO: CREATE TABLE: merging multiple inherited definitions of attribute "location" CREATE TABLE city ( name name, location box, @@ -135,8 +135,8 @@ CREATE TABLE c_star ( CREATE TABLE d_star ( d float8 ) INHERITS (b_star, c_star); -NOTICE: CREATE TABLE: merging multiple inherited definitions of attribute "class" -NOTICE: CREATE TABLE: merging multiple inherited definitions of attribute "a" +INFO: CREATE TABLE: merging multiple inherited definitions of attribute "class" +INFO: CREATE TABLE: merging multiple inherited definitions of attribute "a" CREATE TABLE e_star ( e int2 ) INHERITS (c_star); |