]> granicus.if.org Git - postgresql/commit
Add a paramtypmod field to Param nodes. This is dead weight for Params
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 10 Dec 2006 22:13:27 +0000 (22:13 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 10 Dec 2006 22:13:27 +0000 (22:13 +0000)
commit9fa12ddda62549a0e0225220745c3bf89434dab3
tree691cde987387d3500ec9c5560f19b270beb90da7
parent314c7b642b14e8a60a411ecce2435edf0072f78a
Add a paramtypmod field to Param nodes.  This is dead weight for Params
representing externally-supplied values, since the APIs that carry such
values only specify type not typmod.  However, for PARAM_SUBLINK Params
it is handy to carry the typmod of the sublink's output column.  This
is a much cleaner solution for the recently reported 'could not find
pathkey item to sort' and 'failed to find unique expression in subplan
tlist' bugs than my original 8.2-compatible patch.  Besides, someday we
might want to support typmods for external parameters ...
src/backend/nodes/copyfuncs.c
src/backend/nodes/equalfuncs.c
src/backend/nodes/outfuncs.c
src/backend/nodes/readfuncs.c
src/backend/optimizer/plan/subselect.c
src/backend/parser/parse_agg.c
src/backend/parser/parse_coerce.c
src/backend/parser/parse_expr.c
src/include/catalog/catversion.h
src/include/nodes/primnodes.h