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
a84171b0
Commit
a84171b0
authored
Apr 07, 2008
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add documentation clarification for IS [NOT] NULL and row-valued
expressions.
parent
347dd6a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+6
-2
No files found.
doc/src/sgml/func.sgml
View file @
a84171b0
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.42
7 2008/04/04 18:45:36 tgl
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.42
8 2008/04/07 00:51:27 momjian
Exp $ -->
<chapter
id=
"functions"
>
<title>
Functions and Operators
</title>
...
...
@@ -344,7 +344,11 @@
<literal>
IS NULL
</>
is true when the row expression itself is null
or when all the row's fields are null, while
<literal>
IS NOT NULL
</>
is true when the row expression itself is non-null
and all the row's fields are non-null.
and all the row's fields are non-null. Because of this behavior,
<literal>
IS NULL
</>
and
<literal>
IS NOT NULL
</>
do not always return
inverse results for row-valued expressions, i.e. a row-valued
expression that contains both NULL and non-null values will return false
for both tests.
This definition conforms to the SQL standard, and is a change from the
inconsistent behavior exhibited by
<productname>
PostgreSQL
</productname>
versions prior to 8.2.
...
...
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