Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 969093b

Browse files
author
Michael Meskes
committed
*** empty log message ***
1 parent 964c649 commit 969093b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

src/interfaces/ecpg/ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -694,3 +694,9 @@ Wed Oct 27 18:08:09 CEST 1999
694694

695695
- Synced preproc.y with gram.y.
696696
- Set ecpg version to 2.6.8
697+
698+
Fri Oct 29 21:36:25 CEST 1999
699+
700+
- Fixed bug that caused ecpg to not allow FOR UPDATE.
701+
- Set ecpg version to 2.6.9
702+

src/interfaces/ecpg/preproc/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include $(SRCDIR)/Makefile.global
33

44
MAJOR_VERSION=2
55
MINOR_VERSION=6
6-
PATCHLEVEL=8
6+
PATCHLEVEL=9
77

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

src/interfaces/ecpg/preproc/preproc.y

+1-1
Original file line numberDiff line numberDiff line change
@@ -2792,9 +2792,9 @@ SubSelect: SELECT opt_unique target_list
27922792
result from_clause where_clause
27932793
group_clause having_clause
27942794
{
2795-
$$ = cat4_str(cat5_str(make1_str("select"), $2, $3, $4, $5), $6, $7, $8);
27962795
if (strlen($7) > 0 || strlen($8) > 0)
27972796
ForUpdateNotAllowed = 1;
2797+
$$ = cat4_str(cat5_str(make1_str("select"), $2, $3, $4, $5), $6, $7, $8);
27982798
}
27992799
;
28002800

0 commit comments

Comments
 (0)