*** empty log message ***
This commit is contained in:
parent
c77ec76e7c
commit
68ee58ed43
@ -631,3 +631,10 @@ Tue Sep 14 22:26:40 CEST 1999
|
|||||||
- Return OID in sqlca.sqlerrd[1] if possible.
|
- Return OID in sqlca.sqlerrd[1] if possible.
|
||||||
- Set ecpg version to 2.6.3
|
- Set ecpg version to 2.6.3
|
||||||
- Set library version to 3.0.2
|
- Set library version to 3.0.2
|
||||||
|
|
||||||
|
Fri Sep 17 07:43:55 CEST 1999
|
||||||
|
|
||||||
|
- Fixed bug in parsing C strings.
|
||||||
|
- Fixed bug in parsing operators.
|
||||||
|
- Set ecpg version to 2.6.4
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ include $(SRCDIR)/Makefile.global
|
|||||||
|
|
||||||
MAJOR_VERSION=2
|
MAJOR_VERSION=2
|
||||||
MINOR_VERSION=6
|
MINOR_VERSION=6
|
||||||
PATCHLEVEL=3
|
PATCHLEVEL=4
|
||||||
|
|
||||||
CFLAGS+=-I../include -DMAJOR_VERSION=$(MAJOR_VERSION) \
|
CFLAGS+=-I../include -DMAJOR_VERSION=$(MAJOR_VERSION) \
|
||||||
-DMINOR_VERSION=$(MINOR_VERSION) -DPATCHLEVEL=$(PATCHLEVEL) \
|
-DMINOR_VERSION=$(MINOR_VERSION) -DPATCHLEVEL=$(PATCHLEVEL) \
|
||||||
|
@ -110,9 +110,13 @@ xqcat {quote}{space}*\n{space}*{quote}
|
|||||||
dquote \"
|
dquote \"
|
||||||
xdstart {dquote}
|
xdstart {dquote}
|
||||||
xdstop {dquote}
|
xdstop {dquote}
|
||||||
xdcqdq \\\"
|
|
||||||
xdinside [^"]*
|
xdinside [^"]*
|
||||||
xdcinside ({xdinside}|{xdcqdq})*
|
|
||||||
|
/* special stuff for C strings */
|
||||||
|
xdcqq \\\\
|
||||||
|
xdcqdq \\\"
|
||||||
|
xdcother [^"]
|
||||||
|
xdcinside ({xdcqq}|{xdcqdq}|{xdcother})
|
||||||
|
|
||||||
/* Comments
|
/* Comments
|
||||||
* Ignored by the scanner and parser.
|
* Ignored by the scanner and parser.
|
||||||
@ -133,7 +137,7 @@ identifier {letter}{letter_or_digit}*
|
|||||||
typecast "::"
|
typecast "::"
|
||||||
|
|
||||||
self [,()\[\].;$\:\+\-\*\/\%\^\<\>\=\|]
|
self [,()\[\].;$\:\+\-\*\/\%\^\<\>\=\|]
|
||||||
op_and_self [\~\!\@\#\^\&\|\?\$\:\+\-\*\/\%\<\>\=]
|
op_and_self [\~\!\@\#\^\&\|\`\?\$\:\+\-\*\/\%\<\>\=]
|
||||||
operator {op_and_self}+
|
operator {op_and_self}+
|
||||||
|
|
||||||
xmstop -
|
xmstop -
|
||||||
@ -287,7 +291,6 @@ cppline {space}*#.*(\\{space}*\n)*\n*
|
|||||||
memcpy(literal+llen, yytext, yyleng+1);
|
memcpy(literal+llen, yytext, yyleng+1);
|
||||||
llen += yyleng;
|
llen += yyleng;
|
||||||
}
|
}
|
||||||
|
|
||||||
<xm>{space}* { /* ignore */ }
|
<xm>{space}* { /* ignore */ }
|
||||||
<xm>{xmstop} {
|
<xm>{xmstop} {
|
||||||
BEGIN(SQL);
|
BEGIN(SQL);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user