1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

More collations cleanup, from trawling for missed collation assignments.

Mostly cosmetic, though I did find that generateClonedIndexStmt failed
to clone the index's collations.
This commit is contained in:
Tom Lane
2011-03-26 16:35:25 -04:00
parent b23c9fa929
commit 0c9d9e8dd6
9 changed files with 70 additions and 14 deletions

View File

@ -3027,6 +3027,8 @@ bool
return true;
if (walker(coldef->raw_default, context))
return true;
if (walker(coldef->collClause, context))
return true;
/* for now, constraints are ignored */
}
break;