diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-12-12 20:35:16 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-12-12 20:35:16 +0000 |
commit | b0422b215c100bb29c1071872012a1f3c6681058 (patch) | |
tree | a764deb63dc546abe6c0b283feac110fd22d01c4 /src/include/parser/parse_expr.h | |
parent | ff7349694f399d0063b51419ea6e25770334f363 (diff) |
Preliminary code review for domain CHECK constraints patch: add documentation,
make VALUE a non-reserved word again, use less invasive method of passing
ConstraintTestValue into transformExpr, fix problems with nested constraint
testing, do correct thing with NULL result from a constraint expression,
remove memory leak. Domain checks still need much more work if we are going
to allow ALTER DOMAIN, however.
Diffstat (limited to 'src/include/parser/parse_expr.h')
-rw-r--r-- | src/include/parser/parse_expr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h index bcf84912acf..6606d3913e5 100644 --- a/src/include/parser/parse_expr.h +++ b/src/include/parser/parse_expr.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parse_expr.h,v 1.29 2002/11/15 02:50:21 momjian Exp $ + * $Id: parse_expr.h,v 1.30 2002/12/12 20:35:16 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -22,7 +22,7 @@ extern int max_expr_depth; extern bool Transform_null_equals; -extern Node *transformExpr(ParseState *pstate, Node *expr, ConstraintTestValue *domVal); +extern Node *transformExpr(ParseState *pstate, Node *expr); extern Oid exprType(Node *expr); extern int32 exprTypmod(Node *expr); extern bool exprIsLengthCoercion(Node *expr, int32 *coercedTypmod); |