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/backend/nodes/copyfuncs.c | |
parent | d397c1c8a2dfec4ac93eb0e1b3f96418bb98fdd7 (diff) | |
download | postgresql-73874a06f02691b32c07318e543d83e7947efa51.tar.gz postgresql-73874a06f02691b32c07318e543d83e7947efa51.zip |
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/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index e78de345d9c..9435a396f07 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -15,7 +15,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.127 2000/10/26 21:35:47 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.128 2000/10/31 10:22:10 petere Exp $ * *------------------------------------------------------------------------- */ @@ -2511,6 +2511,7 @@ _copyValue(Value *from) break; case T_Float: case T_String: + case T_BitString: newnode->val.str = pstrdup(from->val.str); break; default: @@ -2703,6 +2704,7 @@ copyObject(void *from) case T_Integer: case T_Float: case T_String: + case T_BitString: retval = _copyValue(from); break; case T_List: |