diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-03-26 16:35:25 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-03-26 16:35:25 -0400 |
commit | 0c9d9e8dd655fff7bcfc401e82838b8c20c16939 (patch) | |
tree | a439a1dc07a6beee9e04d5a26911a8787b9e4740 /src/include/nodes/primnodes.h | |
parent | b23c9fa9293c54a3829093d207be37a7b42cb630 (diff) | |
download | postgresql-0c9d9e8dd655fff7bcfc401e82838b8c20c16939.tar.gz postgresql-0c9d9e8dd655fff7bcfc401e82838b8c20c16939.zip |
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/include/nodes/primnodes.h')
-rw-r--r-- | src/include/nodes/primnodes.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/nodes/primnodes.h b/src/include/nodes/primnodes.h index 609f253c077..47e57193213 100644 --- a/src/include/nodes/primnodes.h +++ b/src/include/nodes/primnodes.h @@ -1047,9 +1047,9 @@ typedef struct CoerceToDomain * constraint. This is effectively like a Param, but can be implemented more * simply since we need only one replacement value at a time. * - * Note: the typeId/typeMod will be set from the domain's base type, not - * the domain itself. This is because we shouldn't consider the value to - * be a member of the domain if we haven't yet checked its constraints. + * Note: the typeId/typeMod/collation will be set from the domain's base type, + * not the domain itself. This is because we shouldn't consider the value + * to be a member of the domain if we haven't yet checked its constraints. */ typedef struct CoerceToDomainValue { |