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
6126d3e7
Commit
6126d3e7
authored
Feb 20, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document IS [NOT] OF, which was added in 7.3.
parent
077d753a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
3 deletions
+20
-3
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+17
-1
doc/src/sgml/syntax.sgml
doc/src/sgml/syntax.sgml
+3
-2
No files found.
doc/src/sgml/func.sgml
View file @
6126d3e7
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.36
5 2007/02/19 22:51:44
momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.36
6 2007/02/20 00:25:05
momjian Exp $ -->
<chapter
id=
"functions"
>
<title>
Functions and Operators
</title>
...
...
@@ -411,6 +411,22 @@
<literal>
IS NOT NULL
</literal>
, respectively, except that the input
expression must be of Boolean type.
</para>
<para>
<indexterm>
<primary>
IS OF
</primary>
</indexterm>
<indexterm>
<primary>
IS NOT OF
</primary>
</indexterm>
It is possible to check the data type of an expression using the
constructs
<synopsis>
<replaceable>
expression
</replaceable>
IS OF (typename, ...)
<replaceable>
expression
</replaceable>
IS NOT OF (typename, ...)
</synopsis>
They return a boolean value based on whether the expression's data
type is one of the listed data types.
</sect1>
<sect1
id=
"functions-math"
>
...
...
doc/src/sgml/syntax.sgml
View file @
6126d3e7
<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.11
5 2007/02/06 09:16:07 petere
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.11
6 2007/02/20 00:25:05 momjian
Exp $ -->
<chapter id="sql-syntax">
<title>SQL Syntax</title>
...
...
@@ -847,7 +847,8 @@ SELECT (5 !) - 6;
<row>
<entry><token>IS</token></entry>
<entry></entry>
<entry><literal>IS TRUE</>, <literal>IS FALSE</>, <literal>IS UNKNOWN</>, <literal>IS NULL</></entry>
<entry><literal>IS TRUE</>, <literal>IS FALSE</>, <literal>IS
UNKNOWN</>, <literal>IS NULL</>, <literal>IS OF</></entry>
</row>
<row>
...
...
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