Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit06edbaf

Browse files
committed
Here's a patch. It also includes the latest parser changes.
Michael
1 parentbaa2f99 commit06edbaf

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

‎src/interfaces/ecpg/ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,4 +348,11 @@ Wed Sep 30 12:15:10 CEST 1998
348348
- Synced preproc.y with gram.y yet again.
349349
- Set version to 2.4.3
350350

351+
Mon Okt 12 12:36:04 CEST 1998
351352

353+
- Synced preproc.y with gram.y yet again.
354+
355+
Thu Okt 15 10:05:04 CEST 1998
356+
357+
- Synced preproc.y with gram.y yet again.
358+
- Set version to 2.4.4

‎src/interfaces/ecpg/lib/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ ecpglib.o : ecpglib.c ../include/ecpglib.h ../include/ecpgtype.h
104104
typename.o : typename.c ../include/ecpgtype.h
105105
$(CC)$(CFLAGS) -I../include$(PQ_INCLUDE) -c$< -o$@
106106

107-
ecpglib.sho.o : ecpglib.c ../include/ecpglib.h ../include/ecpgtype.h
107+
ecpglib.sho : ecpglib.c ../include/ecpglib.h ../include/ecpgtype.h
108108
$(CC)$(CFLAGS)$(CFLAGS_SL) -I../include$(PQ_INCLUDE) -c$< -o$@
109-
typename.sho.o : typename.c ../include/ecpgtype.h
109+
typename.sho : typename.c ../include/ecpgtype.h
110110
$(CC)$(CFLAGS)$(CFLAGS_SL) -I../include$(PQ_INCLUDE) -c$< -o$@

‎src/interfaces/ecpg/preproc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include $(SRCDIR)/Makefile.global
33

44
MAJOR_VERSION=2
55
MINOR_VERSION=4
6-
PATCHLEVEL=3
6+
PATCHLEVEL=4
77

88
CFLAGS+=-I../include -DMAJOR_VERSION=$(MAJOR_VERSION)\
99
-DMINOR_VERSION=$(MINOR_VERSION) -DPATCHLEVEL=$(PATCHLEVEL)\

‎src/interfaces/ecpg/preproc/preproc.y

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2153,6 +2153,10 @@ UnlistenStmt: UNLISTEN relation_name
21532153
{
21542154
$$ = cat2_str(make1_str("unlisten"),$2);
21552155
}
2156+
|UNLISTEN'*'
2157+
{
2158+
$$ = make1_str("unlisten *");
2159+
}
21562160
;
21572161

21582162
/*****************************************************************************
@@ -3796,9 +3800,9 @@ AexprConst: Iconst
37963800
}
37973801
;
37983802

3799-
ParamNo:PARAM
3803+
ParamNo:PARAMopt_indirection
38003804
{
3801-
$$ = make_name();
3805+
$$ =cat2_str(make_name(),$2);
38023806
}
38033807
;
38043808

@@ -3896,6 +3900,7 @@ ColId: ident{ $$ = $1; }
38963900
|STDIN {$$ = make1_str("stdin"); }
38973901
|STDOUT {$$ = make1_str("stdout"); }
38983902
|TIME{$$ = make1_str("time"); }
3903+
|TIMESTAMP{$$ = make1_str("timestamp"); }
38993904
|TIMEZONE_HOUR {$$ = make1_str("timezone_hour"); }
39003905
|TIMEZONE_MINUTE {$$ = make1_str("timezone_minute"); }
39013906
|TRIGGER{$$ = make1_str("trigger"); }

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp