diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-03-23 17:29:57 -0400 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-03-23 17:29:57 -0400 |
| commit | 0339047bc93147c1c6f78f867ae6b0c215406235 (patch) | |
| tree | 116a4cd10a9eb1b0b6beb4cf871bc126c504572a /src/include/nodes/nodeFuncs.h | |
| parent | e08b4101e1daa2f4e6644330918177a10cac0aab (diff) | |
| download | postgresql-0339047bc93147c1c6f78f867ae6b0c215406235.tar.gz | |
Code review for protransform patches.
Fix loss of previous expression-simplification work when a transform
function fires: we must not simply revert to untransformed input tree.
Instead build a dummy FuncExpr node to pass to the transform function.
This has the additional advantage of providing a simpler, more uniform
API for transform functions.
Move documentation to a somewhat less buried spot, relocate some
poorly-placed code, be more wary of null constants and invalid typmod
values, add an opr_sanity check on protransform function signatures,
and some other minor cosmetic adjustments.
Note: although this patch touches pg_proc.h, no need for catversion
bump, because the changes are cosmetic and don't actually change the
intended catalog contents.
Diffstat (limited to 'src/include/nodes/nodeFuncs.h')
| -rw-r--r-- | src/include/nodes/nodeFuncs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/nodes/nodeFuncs.h b/src/include/nodes/nodeFuncs.h index def4f313ab..e609e4bae2 100644 --- a/src/include/nodes/nodeFuncs.h +++ b/src/include/nodes/nodeFuncs.h @@ -29,6 +29,7 @@ extern Oid exprType(const Node *expr); extern int32 exprTypmod(const Node *expr); extern bool exprIsLengthCoercion(const Node *expr, int32 *coercedTypmod); +extern Node *relabel_to_typmod(Node *expr, int32 typmod); extern bool expression_returns_set(Node *clause); extern Oid exprCollation(const Node *expr); |
