]> granicus.if.org Git - postgresql/blobdiff - src/backend/commands/creatinh.c
Commit to match discussed elog() changes. Only update is that LOG is
[postgresql] / src / backend / commands / creatinh.c
index 0c1e7268d7fb67a01253a027a75e63a85a4b662b..468434ea2a53c5e1cd1064d837a9fec61fd84331 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/commands/Attic/creatinh.c,v 1.81 2001/10/25 05:49:24 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/commands/Attic/creatinh.c,v 1.82 2002/03/02 21:39:22 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -425,7 +425,7 @@ MergeAttributes(List *schema, List *supers, bool istemp,
                                 * Yes, try to merge the two column definitions. They must
                                 * have the same type and typmod.
                                 */
-                               elog(NOTICE, "CREATE TABLE: merging multiple inherited definitions of attribute \"%s\"",
+                               elog(INFO, "CREATE TABLE: merging multiple inherited definitions of attribute \"%s\"",
                                         attributeName);
                                def = (ColumnDef *) nth(exist_attno - 1, inhSchema);
                                if (strcmp(def->typename->name, attributeType) != 0 ||
@@ -564,7 +564,7 @@ MergeAttributes(List *schema, List *supers, bool istemp,
                                 * Yes, try to merge the two column definitions. They must
                                 * have the same type and typmod.
                                 */
-                               elog(NOTICE, "CREATE TABLE: merging attribute \"%s\" with inherited definition",
+                               elog(INFO, "CREATE TABLE: merging attribute \"%s\" with inherited definition",
                                         attributeName);
                                def = (ColumnDef *) nth(exist_attno - 1, inhSchema);
                                if (strcmp(def->typename->name, attributeType) != 0 ||