diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-10-02 21:33:33 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-10-02 21:33:33 +0000 |
| commit | 6eb8d255d217c7f0ed2a89e75ae5cb14653c64eb (patch) | |
| tree | a46783f6fd6caf895f23cfc7275472b0d43715f6 /src/include/nodes/nodes.h | |
| parent | e23a2b1ea02fbbb121048d5f616c397949ebdca8 (diff) | |
| download | postgresql-6eb8d255d217c7f0ed2a89e75ae5cb14653c64eb.tar.gz | |
Allow CREATE FUNCTION's WITH clause to be used for all language types,
not just C, so that ISCACHABLE attribute can be specified for user-defined
functions. Get rid of ParamString node type, which wasn't actually being
generated by gram.y anymore, even though define.c thought that was what
it was getting. Clean up minor bug in dfmgr.c (premature heap_close).
Diffstat (limited to 'src/include/nodes/nodes.h')
| -rw-r--r-- | src/include/nodes/nodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index 68d8247324..08705ea9f6 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodes.h,v 1.53 1999/09/29 16:06:23 wieck Exp $ + * $Id: nodes.h,v 1.54 1999/10/02 21:33:33 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -194,7 +194,7 @@ typedef enum NodeTag T_FuncCall, T_A_Indices, T_ResTarget, - T_ParamString, + T_ParamString, /* not used anymore */ T_RelExpr, T_SortGroupBy, T_RangeVar, |
