diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-10-31 10:22:13 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-10-31 10:22:13 +0000 |
commit | 73874a06f02691b32c07318e543d83e7947efa51 (patch) | |
tree | c401c757c898211a54701e728b120dd7178e77d5 /src/include/nodes/nodes.h | |
parent | d397c1c8a2dfec4ac93eb0e1b3f96418bb98fdd7 (diff) |
Change the parser to convert SQL "position" and "substring" syntax to
position() and substring() functions, so that it works transparently for
bit types as well. Alias the text functions appropriately.
Add position() for bit types.
Add new constant node T_BitString that represents literals of the form
B'1001 and pass those to zpbit type.
Diffstat (limited to 'src/include/nodes/nodes.h')
-rw-r--r-- | src/include/nodes/nodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index b06335290f4..9a939a73345 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: nodes.h,v 1.80 2000/10/26 21:38:12 tgl Exp $ + * $Id: nodes.h,v 1.81 2000/10/31 10:22:12 petere Exp $ * *------------------------------------------------------------------------- */ @@ -140,6 +140,7 @@ typedef enum NodeTag T_Integer, T_Float, T_String, + T_BitString, T_Null, /*--------------------- |