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
5bfac230
Commit
5bfac230
authored
Mar 19, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix shift/reduce for NULL = Var.
parent
0dfc3584
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1037 additions
and
1036 deletions
+1037
-1036
src/backend/parser/gram.c
src/backend/parser/gram.c
+1035
-1035
src/backend/parser/gram.y
src/backend/parser/gram.y
+2
-1
No files found.
src/backend/parser/gram.c
View file @
5bfac230
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/backend/parser/gram.y
View file @
5bfac230
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.6
5 1999/03/18 22:03:59
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.6
6 1999/03/19 23:48:50
momjian Exp $
*
*
* HISTORY
* HISTORY
* AUTHOR DATE MAJOR EVENT
* AUTHOR DATE MAJOR EVENT
...
@@ -340,6 +340,7 @@ Oid param_type(int t); /* used in parse_expr.c */
...
@@ -340,6 +340,7 @@ Oid param_type(int t); /* used in parse_expr.c */
%left Op /* multi-character ops and user-defined operators */
%left Op /* multi-character ops and user-defined operators */
%nonassoc NOTNULL
%nonassoc NOTNULL
%nonassoc ISNULL
%nonassoc ISNULL
%nonassoc NULL_P
%nonassoc IS
%nonassoc IS
%left '+' '-'
%left '+' '-'
%left '*' '/' '%'
%left '*' '/' '%'
...
...
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