mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
Add missing periods.
This commit is contained in:
parent
2377e8e508
commit
1bb257fae6
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* 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))
|
if (strcmp(dbcollate, src_collate))
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errmsg("new collation is incompatible with the collation of the template database (%s)", src_collate),
|
(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))
|
if (strcmp(dbctype, src_ctype))
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errmsg("new LC_CTYPE is incompatible with LC_CTYPE of the template database (%s)", src_ctype),
|
(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 */
|
/* Resolve default tablespace for new database */
|
||||||
|
Loading…
Reference in New Issue
Block a user