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
fa0cd643
Commit
fa0cd643
authored
Feb 19, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AND/OR truth table needs another row IMHO.
parent
da84545d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+12
-5
No files found.
doc/src/sgml/func.sgml
View file @
fa0cd643
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.5
2 2001/02/18 17:17:17 petere
Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.5
3 2001/02/19 00:01:18 tgl
Exp $ -->
<chapter id="functions">
<title>Functions and Operators</title>
...
...
@@ -10,7 +10,7 @@
<citetitle>Programmer's Guide</citetitle>. The
<application>psql</application> commands <command>\df</command> and
<command>\do</command> can be used to show the list of all actually
available function and operators, respectively.
available function
s
and operators, respectively.
</para>
<para>
...
...
@@ -86,6 +86,13 @@
<entry>FALSE</entry>
<entry>NULL</entry>
</row>
<row>
<entry>NULL</entry>
<entry>NULL</entry>
<entry>NULL</entry>
<entry>NULL</entry>
</row>
</tbody>
</tgroup>
</informaltable>
...
...
@@ -218,8 +225,8 @@
<literal><replaceable>expression</replaceable> = NULL</literal>
because NULL is not <quote>equal to</quote> NULL. (NULL represents
an unknown value, so it is not known whether two unknown values are
equal.) <productname>Postgres</productname>
implici
tly converts
<literal>
= NULL</literal> clauses to <literal>
IS NULL</literal> to
equal.) <productname>Postgres</productname>
presen
tly converts
<literal>
x = NULL</literal> clauses to <literal>x
IS NULL</literal> to
allow some broken client applications (such as
<productname>Microsoft Access</productname>) to work, but this may
be discontinued in a future release.
...
...
@@ -309,7 +316,7 @@
<row>
<entry> <literal>!!</literal> </entry>
<entry>Factorial (
left
operator)</entry>
<entry>Factorial (
prefix
operator)</entry>
<entry>!! 5</entry>
<entry>120</entry>
</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