mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-21 03:13:05 +08:00
Update HISTORY/TODO. Disable HAVING.
This commit is contained in:
parent
09b15ff882
commit
323fefdb9d
3
HISTORY
3
HISTORY
@ -12,9 +12,8 @@ configure detection improvements for tcl/tk(Brook Milligan, Alvin)
|
||||
Manual page improvements(Bruce)
|
||||
BETWEEN and LIKE fix(Thomas)
|
||||
fix for psql \connect used by pg_dump(Oliver Elphick)
|
||||
Cleanup of postodbc source code indentation
|
||||
New odbc driver
|
||||
pgaccess, version 0.86
|
||||
HAVING clause now supported in SELECT(Stefan)
|
||||
qsort removed, now uses libc version, cleanups(Jeroen)
|
||||
fix for buffer over-runs detected(Maurice Gittens)
|
||||
fix for buffer overrun in libpgtcl(Randy Kunkee)
|
||||
|
3
doc/TODO
3
doc/TODO
@ -207,9 +207,8 @@ configure detection improvements for tcl/tk(Brook Milligan, Alvin)
|
||||
Manual page improvements(Bruce)
|
||||
BETWEEN and LIKE fix(Thomas)
|
||||
fix for psql \connect used by pg_dump(Oliver Elphick)
|
||||
Cleanup of postodbc source code indentation
|
||||
New odbc driver
|
||||
pgaccess, version 0.86
|
||||
HAVING clause now supported in SELECT(Stefan)
|
||||
qsort removed, now uses libc version, cleanups(Jeroen)
|
||||
fix for buffer over-runs detected(Maurice Gittens)
|
||||
fix for buffer overrun in libpgtcl(Randy Kunkee)
|
||||
|
@ -10,7 +10,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.10 1998/04/13 21:07:15 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.11 1998/04/17 04:12:56 momjian Exp $
|
||||
*
|
||||
* HISTORY
|
||||
* AUTHOR DATE MAJOR EVENT
|
||||
@ -2542,7 +2542,8 @@ groupby: ColId
|
||||
|
||||
having_clause: HAVING a_expr
|
||||
{
|
||||
$$ = $2;
|
||||
elog(ERROR,"HAVING clause not yet implemented");
|
||||
/* $$ = $2; use this line instead to enable HAVING */
|
||||
}
|
||||
| /*EMPTY*/ { $$ = NULL; }
|
||||
;
|
||||
|
Loading…
Reference in New Issue
Block a user