aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/dbcommands.c
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2009-04-15 21:36:12 +0000
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2009-04-15 21:36:12 +0000
commit1bb257fae60c53f3f48853e467ae8453d31cb758 (patch)
treeea4694a36a035064471d8ef5c532800532d21534 /src/backend/commands/dbcommands.c
parent2377e8e5088ec13d04d0e3aec860d91f95441757 (diff)
downloadpostgresql-1bb257fae60c53f3f48853e467ae8453d31cb758.tar.gz
postgresql-1bb257fae60c53f3f48853e467ae8453d31cb758.zip
Add missing periods.
Diffstat (limited to 'src/backend/commands/dbcommands.c')
-rw-r--r--src/backend/commands/dbcommands.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c
index 2b9b11e2fea..fe1c8e2fad9 100644
--- a/src/backend/commands/dbcommands.c
+++ b/src/backend/commands/dbcommands.c
@@ -13,7 +13,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/commands/dbcommands.c,v 1.220 2009/04/06 08:42:52 heikki Exp $
+ * $PostgreSQL: pgsql/src/backend/commands/dbcommands.c,v 1.221 2009/04/15 21:36:12 alvherre Exp $
*
*-------------------------------------------------------------------------
*/
@@ -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 */