projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f5c1b2
)
Add support for casting bit string constants.
author
Peter Eisentraut
Thu, 16 Nov 2000 17:27:10 +0000
(17:27 +0000)
committer
Peter Eisentraut
Thu, 16 Nov 2000 17:27:10 +0000
(17:27 +0000)
src/backend/parser/parse_expr.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/parser/parse_expr.c
b/src/backend/parser/parse_expr.c
index 94ccaa5f69f079fb222b4a09ac7ac5de5c6371ef..ecf88ceea7e469b3790c13ec2cb905dc25eba8e7 100644
(file)
--- a/
src/backend/parser/parse_expr.c
+++ b/
src/backend/parser/parse_expr.c
@@
-8,7
+8,7
@@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.8
6 2000/10/07 00:58:17 tgl
Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.8
7 2000/11/16 17:27:10 petere
Exp $
*
*-------------------------------------------------------------------------
*/
@@
-838,6
+838,7
@@
parser_typecast_constant(Value *expr, TypeName *typename)
break;
case T_Float:
case T_String:
+ case T_BitString:
const_string = expr->val.str;
break;
case T_Null: