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

Commit 323fefd

Browse files
committed
Update HISTORY/TODO. Disable HAVING.
1 parent 09b15ff commit 323fefd

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

HISTORY

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ configure detection improvements for tcl/tk(Brook Milligan, Alvin)
1212
Manual page improvements(Bruce)
1313
BETWEEN and LIKE fix(Thomas)
1414
fix for psql \connect used by pg_dump(Oliver Elphick)
15-
Cleanup of postodbc source code indentation
15+
New odbc driver
1616
pgaccess, version 0.86
17-
HAVING clause now supported in SELECT(Stefan)
1817
qsort removed, now uses libc version, cleanups(Jeroen)
1918
fix for buffer over-runs detected(Maurice Gittens)
2019
fix for buffer overrun in libpgtcl(Randy Kunkee)

doc/TODO

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,8 @@ configure detection improvements for tcl/tk(Brook Milligan, Alvin)
207207
Manual page improvements(Bruce)
208208
BETWEEN and LIKE fix(Thomas)
209209
fix for psql \connect used by pg_dump(Oliver Elphick)
210-
Cleanup of postodbc source code indentation
210+
New odbc driver
211211
pgaccess, version 0.86
212-
HAVING clause now supported in SELECT(Stefan)
213212
qsort removed, now uses libc version, cleanups(Jeroen)
214213
fix for buffer over-runs detected(Maurice Gittens)
215214
fix for buffer overrun in libpgtcl(Randy Kunkee)

src/backend/parser/gram.y

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.10 1998/04/13 21:07:15 momjian Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.11 1998/04/17 04:12:56 momjian Exp $
1414
*
1515
* HISTORY
1616
* AUTHOR DATE MAJOR EVENT
@@ -2542,7 +2542,8 @@ groupby: ColId
25422542

25432543
having_clause: HAVING a_expr
25442544
{
2545-
$$ = $2;
2545+
elog(ERROR,"HAVING clause not yet implemented");
2546+
/* $$ = $2; use this line instead to enable HAVING */
25462547
}
25472548
| /*EMPTY*/ { $$ = NULL; }
25482549
;

0 commit comments

Comments
 (0)