Commit 969093b7 authored by Michael Meskes's avatar Michael Meskes

*** empty log message ***

parent 964c649c
...@@ -694,3 +694,9 @@ Wed Oct 27 18:08:09 CEST 1999 ...@@ -694,3 +694,9 @@ Wed Oct 27 18:08:09 CEST 1999
- Synced preproc.y with gram.y. - Synced preproc.y with gram.y.
- Set ecpg version to 2.6.8 - Set ecpg version to 2.6.8
Fri Oct 29 21:36:25 CEST 1999
- Fixed bug that caused ecpg to not allow FOR UPDATE.
- Set ecpg version to 2.6.9
...@@ -3,7 +3,7 @@ include $(SRCDIR)/Makefile.global ...@@ -3,7 +3,7 @@ include $(SRCDIR)/Makefile.global
MAJOR_VERSION=2 MAJOR_VERSION=2
MINOR_VERSION=6 MINOR_VERSION=6
PATCHLEVEL=8 PATCHLEVEL=9
CFLAGS+=-I../include -DMAJOR_VERSION=$(MAJOR_VERSION) \ CFLAGS+=-I../include -DMAJOR_VERSION=$(MAJOR_VERSION) \
-DMINOR_VERSION=$(MINOR_VERSION) -DPATCHLEVEL=$(PATCHLEVEL) \ -DMINOR_VERSION=$(MINOR_VERSION) -DPATCHLEVEL=$(PATCHLEVEL) \
......
...@@ -2792,9 +2792,9 @@ SubSelect: SELECT opt_unique target_list ...@@ -2792,9 +2792,9 @@ SubSelect: SELECT opt_unique target_list
result from_clause where_clause result from_clause where_clause
group_clause having_clause group_clause having_clause
{ {
$$ = cat4_str(cat5_str(make1_str("select"), $2, $3, $4, $5), $6, $7, $8);
if (strlen($7) > 0 || strlen($8) > 0) if (strlen($7) > 0 || strlen($8) > 0)
ForUpdateNotAllowed = 1; ForUpdateNotAllowed = 1;
$$ = cat4_str(cat5_str(make1_str("select"), $2, $3, $4, $5), $6, $7, $8);
} }
; ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment