Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
323fefdb
Commit
323fefdb
authored
26 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update HISTORY/TODO. Disable HAVING.
parent
09b15ff8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
HISTORY
+1
-2
1 addition, 2 deletions
HISTORY
doc/TODO
+1
-2
1 addition, 2 deletions
doc/TODO
src/backend/parser/gram.y
+3
-2
3 additions, 2 deletions
src/backend/parser/gram.y
with
5 additions
and
6 deletions
HISTORY
+
1
−
2
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)
...
...
This diff is collapsed.
Click to expand it.
doc/TODO
+
1
−
2
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)
...
...
This diff is collapsed.
Click to expand it.
src/backend/parser/gram.y
+
3
−
2
View file @
323fefdb
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.1
0
1998/04/1
3 21:07:15
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.1
1
1998/04/1
7 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; }
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment