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
d56b9fda
Commit
d56b9fda
authored
Sep 27, 2004
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Synced parser.
Removed Oracle transaction syntax to fix shift/reduce error.
parent
ae9df0b2
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
77 additions
and
47 deletions
+77
-47
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+5
-0
src/interfaces/ecpg/preproc/ecpg_keywords.c
src/interfaces/ecpg/preproc/ecpg_keywords.c
+1
-2
src/interfaces/ecpg/preproc/keywords.c
src/interfaces/ecpg/preproc/keywords.c
+3
-1
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+68
-44
No files found.
src/interfaces/ecpg/ChangeLog
View file @
d56b9fda
...
@@ -1859,6 +1859,11 @@ Mon Sep 6 13:17:46 CEST 2004
...
@@ -1859,6 +1859,11 @@ Mon Sep 6 13:17:46 CEST 2004
- Fixed bug in Informix mode that caused a segfault.
- Fixed bug in Informix mode that caused a segfault.
- Set pgtypes library version to 1.2.
- Set pgtypes library version to 1.2.
Mon Sep 27 11:05:49 CEST 2004
- Synced parser.
- Removed Oracle transaction syntax to fix shift/reduce error.
- Set ecpg version to 3.2.0.
- Set ecpg version to 3.2.0.
- Set compat library version to 1.2.
- Set compat library version to 1.2.
- Set ecpg library version to 4.2.
- Set ecpg library version to 4.2.
...
...
src/interfaces/ecpg/preproc/ecpg_keywords.c
View file @
d56b9fda
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
* lexical token lookup for reserved words in postgres embedded SQL
* lexical token lookup for reserved words in postgres embedded SQL
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg_keywords.c,v 1.
29 2003/11/29 19:52:08 pgsql
Exp $
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg_keywords.c,v 1.
30 2004/09/27 09:59:17 meskes
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -57,7 +57,6 @@ static ScanKeyword ScanKeywords[] = {
...
@@ -57,7 +57,6 @@ static ScanKeyword ScanKeywords[] = {
{
"open"
,
SQL_OPEN
},
{
"open"
,
SQL_OPEN
},
{
"output"
,
SQL_OUTPUT
},
{
"output"
,
SQL_OUTPUT
},
{
"reference"
,
SQL_REFERENCE
},
{
"reference"
,
SQL_REFERENCE
},
{
"release"
,
SQL_RELEASE
},
{
"returned_length"
,
SQL_RETURNED_LENGTH
},
{
"returned_length"
,
SQL_RETURNED_LENGTH
},
{
"returned_octet_length"
,
SQL_RETURNED_OCTET_LENGTH
},
{
"returned_octet_length"
,
SQL_RETURNED_OCTET_LENGTH
},
{
"scale"
,
SQL_SCALE
},
{
"scale"
,
SQL_SCALE
},
...
...
src/interfaces/ecpg/preproc/keywords.c
View file @
d56b9fda
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/keywords.c,v 1.6
6 2004/08/30 02:54:41 momjian
Exp $
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/keywords.c,v 1.6
7 2004/09/27 09:59:17 meskes
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -249,6 +249,7 @@ static ScanKeyword ScanKeywords[] = {
...
@@ -249,6 +249,7 @@ static ScanKeyword ScanKeywords[] = {
{
"references"
,
REFERENCES
},
{
"references"
,
REFERENCES
},
{
"reindex"
,
REINDEX
},
{
"reindex"
,
REINDEX
},
{
"relative"
,
RELATIVE_P
},
{
"relative"
,
RELATIVE_P
},
{
"release"
,
RELEASE
},
{
"rename"
,
RENAME
},
{
"rename"
,
RENAME
},
{
"repeatable"
,
REPEATABLE
},
{
"repeatable"
,
REPEATABLE
},
{
"replace"
,
REPLACE
},
{
"replace"
,
REPLACE
},
...
@@ -262,6 +263,7 @@ static ScanKeyword ScanKeywords[] = {
...
@@ -262,6 +263,7 @@ static ScanKeyword ScanKeywords[] = {
{
"row"
,
ROW
},
{
"row"
,
ROW
},
{
"rows"
,
ROWS
},
{
"rows"
,
ROWS
},
{
"rule"
,
RULE
},
{
"rule"
,
RULE
},
{
"savepoint"
,
SAVEPOINT
},
{
"schema"
,
SCHEMA
},
{
"schema"
,
SCHEMA
},
{
"scroll"
,
SCROLL
},
{
"scroll"
,
SCROLL
},
{
"second"
,
SECOND_P
},
{
"second"
,
SECOND_P
},
...
...
src/interfaces/ecpg/preproc/preproc.y
View file @
d56b9fda
This diff is collapsed.
Click to expand it.
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