diff options
author | Alvaro Herrera | 2009-04-15 21:36:12 +0000 |
---|---|---|
committer | Alvaro Herrera | 2009-04-15 21:36:12 +0000 |
commit | ea824956a90596e0cfac165399a63c2b984ea8ed (patch) | |
tree | f409cbfa6bb0bff311cdba2f9d31b7808f29262f | |
parent | f72dae059b90c862418cb4b19be6813c87a61820 (diff) |
Add missing periods.
-rw-r--r-- | src/backend/commands/dbcommands.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c index 43ab2c90d4..a401ae4fa1 100644 --- a/src/backend/commands/dbcommands.c +++ b/src/backend/commands/dbcommands.c @@ -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 */ |