aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_utilcmd.c
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2018-01-31 16:45:37 -0500
committerRobert Haas <rhaas@postgresql.org>2018-01-31 16:45:37 -0500
commit22757960bb3b2a6fa331bad132998c53b3e744a9 (patch)
tree54d47c5e4fbceca02a0efdab382e5f59f0a26060 /src/backend/parser/parse_utilcmd.c
parentde715414608846ce1ae44b79a39d61c48e25dce7 (diff)
downloadpostgresql-22757960bb3b2a6fa331bad132998c53b3e744a9.tar.gz
postgresql-22757960bb3b2a6fa331bad132998c53b3e744a9.zip
Fix typo: colums -> columns.
Along the way, also fix code indentation. Alexander Lakhin, reviewed by Michael Paquier Discussion: http://postgr.es/m/45c44aa7-7cfa-7f3b-83fd-d8300677fdda@gmail.com
Diffstat (limited to 'src/backend/parser/parse_utilcmd.c')
-rw-r--r--src/backend/parser/parse_utilcmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/parser/parse_utilcmd.c b/src/backend/parser/parse_utilcmd.c
index 5afb363096a..1d35815fcfe 100644
--- a/src/backend/parser/parse_utilcmd.c
+++ b/src/backend/parser/parse_utilcmd.c
@@ -664,8 +664,8 @@ transformColumnDefinition(CreateStmtContext *cxt, ColumnDef *column)
if (cxt->ofType)
ereport(ERROR,
- (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
- errmsg("identity colums are not supported on typed tables")));
+ (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
+ errmsg("identity columns are not supported on typed tables")));
if (cxt->partbound)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),