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
06edbafd
Commit
06edbafd
authored
Oct 16, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Here's a patch. It also includes the latest parser changes.
Michael
parent
baa2f999
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
5 deletions
+17
-5
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+7
-0
src/interfaces/ecpg/lib/Makefile.in
src/interfaces/ecpg/lib/Makefile.in
+2
-2
src/interfaces/ecpg/preproc/Makefile
src/interfaces/ecpg/preproc/Makefile
+1
-1
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+7
-2
No files found.
src/interfaces/ecpg/ChangeLog
View file @
06edbafd
...
...
@@ -348,4 +348,11 @@ Wed Sep 30 12:15:10 CEST 1998
- Synced preproc.y with gram.y yet again.
- Set version to 2.4.3
Mon Okt 12 12:36:04 CEST 1998
- Synced preproc.y with gram.y yet again.
Thu Okt 15 10:05:04 CEST 1998
- Synced preproc.y with gram.y yet again.
- Set version to 2.4.4
src/interfaces/ecpg/lib/Makefile.in
View file @
06edbafd
...
...
@@ -104,7 +104,7 @@ ecpglib.o : ecpglib.c ../include/ecpglib.h ../include/ecpgtype.h
typename.o
:
typename.c ../include/ecpgtype.h
$(CC)
$(CFLAGS)
-I
../include
$(PQ_INCLUDE)
-c
$<
-o
$@
ecpglib.sho
.o
:
ecpglib.c ../include/ecpglib.h ../include/ecpgtype.h
ecpglib.sho
:
ecpglib.c ../include/ecpglib.h ../include/ecpgtype.h
$(CC)
$(CFLAGS)
$(CFLAGS_SL)
-I
../include
$(PQ_INCLUDE)
-c
$<
-o
$@
typename.sho
.o
:
typename.c ../include/ecpgtype.h
typename.sho
:
typename.c ../include/ecpgtype.h
$(CC)
$(CFLAGS)
$(CFLAGS_SL)
-I
../include
$(PQ_INCLUDE)
-c
$<
-o
$@
src/interfaces/ecpg/preproc/Makefile
View file @
06edbafd
...
...
@@ -3,7 +3,7 @@ include $(SRCDIR)/Makefile.global
MAJOR_VERSION
=
2
MINOR_VERSION
=
4
PATCHLEVEL
=
3
PATCHLEVEL
=
4
CFLAGS
+=
-I
../include
-DMAJOR_VERSION
=
$(MAJOR_VERSION)
\
-DMINOR_VERSION
=
$(MINOR_VERSION)
-DPATCHLEVEL
=
$(PATCHLEVEL)
\
...
...
src/interfaces/ecpg/preproc/preproc.y
View file @
06edbafd
...
...
@@ -2153,6 +2153,10 @@ UnlistenStmt: UNLISTEN relation_name
{
$$ = cat2_str(make1_str("unlisten"), $2);
}
| UNLISTEN '*'
{
$$ = make1_str("unlisten *");
}
;
/*****************************************************************************
...
...
@@ -3796,9 +3800,9 @@ AexprConst: Iconst
}
;
ParamNo: PARAM
ParamNo: PARAM
opt_indirection
{
$$ =
make_name(
);
$$ =
cat2_str(make_name(), $2
);
}
;
...
...
@@ -3896,6 +3900,7 @@ ColId: ident { $$ = $1; }
| STDIN { $$ = make1_str("stdin"); }
| STDOUT { $$ = make1_str("stdout"); }
| TIME { $$ = make1_str("time"); }
| TIMESTAMP { $$ = make1_str("timestamp"); }
| TIMEZONE_HOUR { $$ = make1_str("timezone_hour"); }
| TIMEZONE_MINUTE { $$ = make1_str("timezone_minute"); }
| TRIGGER { $$ = make1_str("trigger"); }
...
...
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