diff options
| author | Tom Lane | 2011-03-26 20:35:25 +0000 |
|---|---|---|
| committer | Tom Lane | 2011-03-26 20:35:25 +0000 |
| commit | 0c9d9e8dd655fff7bcfc401e82838b8c20c16939 (patch) | |
| tree | a439a1dc07a6beee9e04d5a26911a8787b9e4740 /src/backend/bootstrap | |
| parent | b23c9fa9293c54a3829093d207be37a7b42cb630 (diff) | |
More collations cleanup, from trawling for missed collation assignments.
Mostly cosmetic, though I did find that generateClonedIndexStmt failed
to clone the index's collations.
Diffstat (limited to 'src/backend/bootstrap')
| -rw-r--r-- | src/backend/bootstrap/bootparse.y | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index 16f84f96a3..75a137bbd7 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -345,6 +345,7 @@ boot_index_param: n->name = $1; n->expr = NULL; n->indexcolname = NULL; + n->collation = NIL; n->opclass = list_make1(makeString($2)); n->ordering = SORTBY_DEFAULT; n->nulls_ordering = SORTBY_NULLS_DEFAULT; |
