From 0c9d9e8dd655fff7bcfc401e82838b8c20c16939 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 26 Mar 2011 16:35:25 -0400 Subject: More collations cleanup, from trawling for missed collation assignments. Mostly cosmetic, though I did find that generateClonedIndexStmt failed to clone the index's collations. --- src/backend/bootstrap/bootparse.y | 1 + 1 file changed, 1 insertion(+) (limited to 'src/backend/bootstrap') 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; -- cgit v1.2.3