Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
94b59fae
Commit
94b59fae
authored
Jun 20, 2003
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Synced with backend.
parent
2cbaaee6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
10 deletions
+11
-10
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+1
-0
src/interfaces/ecpg/preproc/pgc.l
src/interfaces/ecpg/preproc/pgc.l
+10
-10
No files found.
src/interfaces/ecpg/ChangeLog
View file @
94b59fae
...
@@ -1509,6 +1509,7 @@ Fri Jun 20 13:23:07 CEST 2003
...
@@ -1509,6 +1509,7 @@ Fri Jun 20 13:23:07 CEST 2003
Fri Jun 20 15:34:29 CEST 2003
Fri Jun 20 15:34:29 CEST 2003
- For Informix compatibility we have to accept a "free <cursor>".
- For Informix compatibility we have to accept a "free <cursor>".
- Synced scan.l and pgc.l.
- Set ecpg version to 3.0.0
- Set ecpg version to 3.0.0
- Set ecpg library to 4.0.0
- Set ecpg library to 4.0.0
- Set pgtypes library to 1.0.0
- Set pgtypes library to 1.0.0
...
...
src/interfaces/ecpg/preproc/pgc.l
View file @
94b59fae
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.11
6 2003/06/17 07:28:22
meskes Exp $
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.11
7 2003/06/20 15:16:06
meskes Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -179,12 +179,12 @@ xcstop \*+\/
...
@@ -179,12 +179,12 @@ xcstop \*+\/
xcinside [^*/]+
xcinside [^*/]+
digit [0-9]
digit [0-9]
letter [\200-\377_A-Za-z
]
ident_start [A-Za-z\200-\377_
]
letter_or_digit [\200-\377_A-Za-z0-9
]
ident_cont [A-Za-z\200-\377_0-9\$
]
identifier {
letter}{letter_or_digi
t}*
identifier {
ident_start}{ident_con
t}*
array ({
letter_or_digi
t}|[\+\-\*\%\/\(\)])*
array ({
ident_con
t}|[\+\-\*\%\/\(\)])*
typecast "::"
typecast "::"
/*
/*
...
@@ -197,8 +197,8 @@ typecast "::"
...
@@ -197,8 +197,8 @@ typecast "::"
* If you change either set, adjust the character lists appearing in the
* If you change either set, adjust the character lists appearing in the
* rule for "operator"!
* rule for "operator"!
*/
*/
self [,()\[\].;
$
\:\+\-\*\/\%\^\<\>\=]
self [,()\[\].;\:\+\-\*\/\%\^\<\>\=]
op_chars [\~\!\@\#\^\&\|\`\?\
$\
+\-\*\/\%\<\>\=]
op_chars [\~\!\@\#\^\&\|\`\?\+\-\*\/\%\<\>\=]
operator {op_chars}+
operator {op_chars}+
/* we no longer allow unary minus in numbers.
/* we no longer allow unary minus in numbers.
...
@@ -474,7 +474,7 @@ cppline {space}*#(.*\\{space})+.*
...
@@ -474,7 +474,7 @@ cppline {space}*#(.*\\{space})+.*
for (ic = nchars-2; ic >= 0; ic--)
for (ic = nchars-2; ic >= 0; ic--)
{
{
if (strchr("~!@#^&|`?
$
%", yytext[ic]))
if (strchr("~!@#^&|`?%", yytext[ic]))
break;
break;
}
}
if (ic >= 0)
if (ic >= 0)
...
@@ -493,7 +493,7 @@ cppline {space}*#(.*\\{space})+.*
...
@@ -493,7 +493,7 @@ cppline {space}*#(.*\\{space})+.*
* that the "self" rule would have.
* that the "self" rule would have.
*/
*/
if (nchars == 1 &&
if (nchars == 1 &&
strchr(",()[].;
$
:+-*/%^<>=", yytext[0]))
strchr(",()[].;:+-*/%^<>=", yytext[0]))
return yytext[0];
return yytext[0];
}
}
...
@@ -862,7 +862,7 @@ cppline {space}*#(.*\\{space})+.*
...
@@ -862,7 +862,7 @@ cppline {space}*#(.*\\{space})+.*
else
else
BEGIN(xskip);
BEGIN(xskip);
}
}
<C,xskip>{informix_special}{endif}{space}* {
<C,xskip>{informix_special}{endif}{space}*
";"
{
/* are we simulating Informix? */
/* are we simulating Informix? */
if (compat == ECPG_COMPAT_INFORMIX)
if (compat == ECPG_COMPAT_INFORMIX)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment