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
75c33220
Commit
75c33220
authored
Apr 22, 2002
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Synced preproc.y and keywords.c.
parent
3c184d18
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
87 additions
and
55 deletions
+87
-55
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+5
-0
src/interfaces/ecpg/preproc/keywords.c
src/interfaces/ecpg/preproc/keywords.c
+5
-2
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+77
-53
No files found.
src/interfaces/ecpg/ChangeLog
View file @
75c33220
...
@@ -1237,6 +1237,11 @@ Sun Apr 14 10:53:14 CEST 2002
...
@@ -1237,6 +1237,11 @@ Sun Apr 14 10:53:14 CEST 2002
- Fixed one bug in structure handling resulting in using sizeof
- Fixed one bug in structure handling resulting in using sizeof
indicator instead of variable.
indicator instead of variable.
- Synced preproc.y with gram.y.
- Synced preproc.y with gram.y.
Mon Apr 22 20:44:56 CEST 2002
- Synced preproc.y with gram.y.
- Synced keywords.c.
- Set ecpg version to 2.10.0.
- Set ecpg version to 2.10.0.
- Set library version to 3.4.0.
- Set library version to 3.4.0.
src/interfaces/ecpg/preproc/keywords.c
View file @
75c33220
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/keywords.c,v 1.4
6 2001/10/15 00:06:04 tgl
Exp $
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/keywords.c,v 1.4
7 2002/04/22 18:54:43 meskes
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -43,6 +43,7 @@ static ScanKeyword ScanKeywords[] = {
...
@@ -43,6 +43,7 @@ static ScanKeyword ScanKeywords[] = {
{
"any"
,
ANY
},
{
"any"
,
ANY
},
{
"as"
,
AS
},
{
"as"
,
AS
},
{
"asc"
,
ASC
},
{
"asc"
,
ASC
},
{
"assertion"
,
ASSERTION
},
{
"at"
,
AT
},
{
"at"
,
AT
},
{
"authorization"
,
AUTHORIZATION
},
{
"authorization"
,
AUTHORIZATION
},
{
"backward"
,
BACKWARD
},
{
"backward"
,
BACKWARD
},
...
@@ -97,6 +98,7 @@ static ScanKeyword ScanKeywords[] = {
...
@@ -97,6 +98,7 @@ static ScanKeyword ScanKeywords[] = {
{
"desc"
,
DESC
},
{
"desc"
,
DESC
},
{
"distinct"
,
DISTINCT
},
{
"distinct"
,
DISTINCT
},
{
"do"
,
DO
},
{
"do"
,
DO
},
{
"domain"
,
DOMAIN_P
},
{
"double"
,
DOUBLE
},
{
"double"
,
DOUBLE
},
{
"drop"
,
DROP
},
{
"drop"
,
DROP
},
{
"each"
,
EACH
},
{
"each"
,
EACH
},
...
@@ -210,7 +212,6 @@ static ScanKeyword ScanKeywords[] = {
...
@@ -210,7 +212,6 @@ static ScanKeyword ScanKeywords[] = {
{
"privileges"
,
PRIVILEGES
},
{
"privileges"
,
PRIVILEGES
},
{
"procedural"
,
PROCEDURAL
},
{
"procedural"
,
PROCEDURAL
},
{
"procedure"
,
PROCEDURE
},
{
"procedure"
,
PROCEDURE
},
{
"public"
,
PUBLIC
},
{
"read"
,
READ
},
{
"read"
,
READ
},
{
"references"
,
REFERENCES
},
{
"references"
,
REFERENCES
},
{
"reindex"
,
REINDEX
},
{
"reindex"
,
REINDEX
},
...
@@ -243,6 +244,7 @@ static ScanKeyword ScanKeywords[] = {
...
@@ -243,6 +244,7 @@ static ScanKeyword ScanKeywords[] = {
{
"statistics"
,
STATISTICS
},
{
"statistics"
,
STATISTICS
},
{
"stdin"
,
STDIN
},
{
"stdin"
,
STDIN
},
{
"stdout"
,
STDOUT
},
{
"stdout"
,
STDOUT
},
{
"storage"
,
STORAGE
},
{
"substring"
,
SUBSTRING
},
{
"substring"
,
SUBSTRING
},
{
"sysid"
,
SYSID
},
{
"sysid"
,
SYSID
},
{
"table"
,
TABLE
},
{
"table"
,
TABLE
},
...
@@ -269,6 +271,7 @@ static ScanKeyword ScanKeywords[] = {
...
@@ -269,6 +271,7 @@ static ScanKeyword ScanKeywords[] = {
{
"unlisten"
,
UNLISTEN
},
{
"unlisten"
,
UNLISTEN
},
{
"until"
,
UNTIL
},
{
"until"
,
UNTIL
},
{
"update"
,
UPDATE
},
{
"update"
,
UPDATE
},
{
"usage"
,
USAGE
},
{
"user"
,
USER
},
{
"user"
,
USER
},
{
"using"
,
USING
},
{
"using"
,
USING
},
{
"vacuum"
,
VACUUM
},
{
"vacuum"
,
VACUUM
},
...
...
src/interfaces/ecpg/preproc/preproc.y
View file @
75c33220
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