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
fd104c57
Commit
fd104c57
authored
Mar 02, 2004
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added partly missing VOLATILE keyword.
parent
340d4468
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
12 deletions
+18
-12
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+5
-1
src/interfaces/ecpg/preproc/Makefile
src/interfaces/ecpg/preproc/Makefile
+3
-3
src/interfaces/ecpg/preproc/pgc.l
src/interfaces/ecpg/preproc/pgc.l
+2
-2
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+8
-6
No files found.
src/interfaces/ecpg/ChangeLog
View file @
fd104c57
...
...
@@ -1750,6 +1750,10 @@ Mon Feb 16 08:17:19 CET 2004
Tue Feb 24 16:48:57 CET 2004
- Corrected error handling in PGTYPEStimestamp_from_asc.
Mon Mar 1 08:56:37 CET 2004
- Added partly missing VOLATILE keyword.
- Set pgtypeslib version to 1.2.
- Set ecpg version to 3.
1.1
.
- Set ecpg version to 3.
2.0
.
src/interfaces/ecpg/preproc/Makefile
View file @
fd104c57
# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.9
8 2004/02/15 13:48:54
meskes Exp $
# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.9
9 2004/03/02 06:45:05
meskes Exp $
subdir
=
src/interfaces/ecpg/preproc
top_builddir
=
../../../..
include
$(top_builddir)/src/Makefile.global
MAJOR_VERSION
=
3
MINOR_VERSION
=
1
PATCHLEVEL
=
1
MINOR_VERSION
=
2
PATCHLEVEL
=
0
override CPPFLAGS
:
= -I$(srcdir)/../include -I$(srcdir) $(CPPFLAGS) $(THREAD_CPPFLAGS)
\
-DMAJOR_VERSION=$(MAJOR_VERSION)
\
...
...
src/interfaces/ecpg/preproc/pgc.l
View file @
fd104c57
...
...
@@ -12,7 +12,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.12
6 2004/02/24 22:06:32 tgl
Exp $
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.12
7 2004/03/02 06:45:05 meskes
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -184,7 +184,7 @@ ident_cont [A-Za-z\200-\377_0-9\$]
identifier {ident_start}{ident_cont}*
array ({ident_cont}|{whitespace}|[\[\]\+\-\*\%\/\(\)])*
array ({ident_cont}|{whitespace}|[\[\]\+\-\*\%\/\(\)
\>\.
])*
typecast "::"
/*
...
...
src/interfaces/ecpg/preproc/preproc.y
View file @
fd104c57
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.27
5 2004/02/18 08:42:02
meskes Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.27
6 2004/03/02 06:45:05
meskes Exp $ */
/* Copyright comment */
%{
...
...
@@ -5671,6 +5671,7 @@ ECPGCKeywords: S_AUTO { $$ = make_str("auto"); }
| S_REGISTER { $$ = make_str("register"); }
| S_STATIC { $$ = make_str("static"); }
| S_TYPEDEF { $$ = make_str("typedef"); }
| S_VOLATILE { $$ = make_str("volatile"); }
;
/*
...
...
@@ -6149,6 +6150,7 @@ c_anything: IDENT { $$ = $1; }
| S_STATIC { $$ = make_str("static"); }
| S_SUB { $$ = make_str("-="); }
| S_TYPEDEF { $$ = make_str("typedef"); }
| S_VOLATILE { $$ = make_str("volatile"); }
| SQL_BOOL { $$ = make_str("bool"); }
| SQL_ENUM { $$ = make_str("enum"); }
| HOUR_P { $$ = make_str("hour"); }
...
...
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