File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,8 @@ configure detection improvements for tcl/tk(Brook Milligan, Alvin)
12
12
Manual page improvements(Bruce)
13
13
BETWEEN and LIKE fix(Thomas)
14
14
fix for psql \connect used by pg_dump(Oliver Elphick)
15
- Cleanup of postodbc source code indentation
15
+ New odbc driver
16
16
pgaccess, version 0.86
17
- HAVING clause now supported in SELECT(Stefan)
18
17
qsort removed, now uses libc version, cleanups(Jeroen)
19
18
fix for buffer over-runs detected(Maurice Gittens)
20
19
fix for buffer overrun in libpgtcl(Randy Kunkee)
Original file line number Diff line number Diff line change @@ -207,9 +207,8 @@ configure detection improvements for tcl/tk(Brook Milligan, Alvin)
207
207
Manual page improvements(Bruce)
208
208
BETWEEN and LIKE fix(Thomas)
209
209
fix for psql \connect used by pg_dump(Oliver Elphick)
210
- Cleanup of postodbc source code indentation
210
+ New odbc driver
211
211
pgaccess, version 0.86
212
- HAVING clause now supported in SELECT(Stefan)
213
212
qsort removed, now uses libc version, cleanups(Jeroen)
214
213
fix for buffer over-runs detected(Maurice Gittens)
215
214
fix for buffer overrun in libpgtcl(Randy Kunkee)
Original file line number Diff line number Diff line change 10
10
*
11
11
*
12
12
* 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 $
14
14
*
15
15
* HISTORY
16
16
* AUTHOR DATE MAJOR EVENT
@@ -2542,7 +2542,8 @@ groupby: ColId
2542
2542
2543
2543
having_clause: HAVING a_expr
2544
2544
{
2545
- $$ = $2;
2545
+ elog(ERROR,"HAVING clause not yet implemented");
2546
+ /* $$ = $2; use this line instead to enable HAVING */
2546
2547
}
2547
2548
| /*EMPTY*/ { $$ = NULL; }
2548
2549
;
You can’t perform that action at this time.
0 commit comments