Add missing periods.
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 15 Apr 2009 21:36:12 +0000 (21:36 +0000)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 15 Apr 2009 21:36:12 +0000 (21:36 +0000)
src/backend/commands/dbcommands.c

index 43ab2c90d408c4564ddfe574d199cd5595511da0..a401ae4fa175b4e71cb56d80b0d47008fd858738 100644 (file)
@@ -390,12 +390,12 @@ createdb(const CreatedbStmt *stmt)
                if (strcmp(dbcollate, src_collate))
                        ereport(ERROR,
                                        (errmsg("new collation is incompatible with the collation of the template database (%s)", src_collate),
-                                        errhint("Use the same collation as in the template database, or use template0 as template")));
+                                        errhint("Use the same collation as in the template database, or use template0 as template.")));
 
                if (strcmp(dbctype, src_ctype))
                        ereport(ERROR,
                                        (errmsg("new LC_CTYPE is incompatible with LC_CTYPE of the template database (%s)", src_ctype),
-                                        errhint("Use the same LC_CTYPE as in the template database, or use template0 as template")));
+                                        errhint("Use the same LC_CTYPE as in the template database, or use template0 as template.")));
        }
 
        /* Resolve default tablespace for new database */