Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
323fefdb
Commit
323fefdb
authored
Apr 17, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update HISTORY/TODO. Disable HAVING.
parent
09b15ff8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
HISTORY
HISTORY
+1
-2
doc/TODO
doc/TODO
+1
-2
src/backend/parser/gram.y
src/backend/parser/gram.y
+3
-2
No files found.
HISTORY
View file @
323fefdb
...
...
@@ -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)
...
...
doc/TODO
View file @
323fefdb
...
...
@@ -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)
...
...
src/backend/parser/gram.y
View file @
323fefdb
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.1
0 1998/04/13 21:07:15
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.1
1 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; }
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment