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
a535cd1f
Commit
a535cd1f
authored
Oct 19, 2001
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed "not fully implemented" warning for nullif
parent
8c3cb43b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+4
-0
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+0
-2
No files found.
src/interfaces/ecpg/ChangeLog
View file @
a535cd1f
...
@@ -1134,5 +1134,9 @@ Thu Oct 18 12:57:04 CEST 2001
...
@@ -1134,5 +1134,9 @@ Thu Oct 18 12:57:04 CEST 2001
- Added patch by Lee Kindness <lkindness@csl.co.uk> fixing several
- Added patch by Lee Kindness <lkindness@csl.co.uk> fixing several
bugs.
bugs.
Fri Oct 19 16:32:06 CEST 2001
- Removed "not yet fully implemented" warnig for nullif.
- Set ecpg version to 2.9.0.
- Set ecpg version to 2.9.0.
- Set library version to 3.3.0.
- Set library version to 3.3.0.
src/interfaces/ecpg/preproc/preproc.y
View file @
a535cd1f
...
@@ -3608,8 +3608,6 @@ case_expr: CASE case_arg when_clause_list case_default END_TRANS
...
@@ -3608,8 +3608,6 @@ case_expr: CASE case_arg when_clause_list case_default END_TRANS
| NULLIF '(' a_expr ',' a_expr ')'
| NULLIF '(' a_expr ',' a_expr ')'
{
{
$$ = cat_str(5, make_str("nullif("), $3, make_str(","), $5, make_str(")"));
$$ = cat_str(5, make_str("nullif("), $3, make_str(","), $5, make_str(")"));
mmerror(ET_NOTICE, "NULLIF() not yet fully implemented");
}
}
| COALESCE '(' expr_list ')'
| COALESCE '(' expr_list ')'
{
{
...
...
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