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
1fe2b77d
Commit
1fe2b77d
authored
Oct 10, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add spaces to manual page.
parent
f03f2466
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
doc/src/sgml/ref/create_operator.sgml
doc/src/sgml/ref/create_operator.sgml
+9
-9
No files found.
doc/src/sgml/ref/create_operator.sgml
View file @
1fe2b77d
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.1
6 2000/09/12 20:52:08
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.1
7 2000/10/10 04:42:43
momjian Exp $
Postgres documentation
-->
...
...
@@ -248,13 +248,13 @@ CREATE
Hence, the query optimizer could freely convert:
<programlisting>
box '((0,0),(1,1))' >>> MYBOXES.description
box '((0,0),
(1,1))' >>> MYBOXES.description
</programlisting>
to
<programlisting>
MYBOXES.description <<< box '((0,0),(1,1))'
MYBOXES.description <<< box '((0,0),
(1,1))'
</programlisting>
</para>
<para>
...
...
@@ -269,11 +269,11 @@ MYBOXES.description <<< box '((0,0),(1,1))'
equal, !==.
The negator link allows the query optimizer to simplify
<programlisting>
NOT MYBOXES.description === box '((0,0),(1,1))'
NOT MYBOXES.description === box '((0,0),
(1,1))'
</programlisting>
to
<programlisting>
MYBOXES.description !== box '((0,0),(1,1))'
MYBOXES.description !== box '((0,0),
(1,1))'
</programlisting>
</para>
<para>
...
...
@@ -331,7 +331,7 @@ MYBOXES.description !== box '((0,0),(1,1))'
The RESTRICT and JOIN options assist the query optimizer in estimating
result sizes. If a clause of the form:
<programlisting>
MYBOXES.description <<< box '((0,0),(1,1))'
MYBOXES.description <<< box '((0,0),
(1,1))'
</programlisting>
is present in the qualification,
then <productname>Postgres</productname> may have to
...
...
@@ -342,7 +342,7 @@ MYBOXES.description <<< box '((0,0),(1,1))'
<command>CREATE FUNCTION</command>) which accepts arguments of the correct
data types and returns a floating point number. The
query optimizer simply calls this function, passing the
parameter <literal>((0,0),(1,1))</literal> and multiplies the result by the relation
parameter <literal>((0,0),
(1,1))</literal> and multiplies the result by the relation
size to get the expected number of instances.
</para>
<para>
...
...
@@ -356,11 +356,11 @@ MYBOXES.description <<< box '((0,0),(1,1))'
<para>
The difference between the function
<programlisting>
my_procedure_1 (MYBOXES.description, box '((0,0),(1,1))')
my_procedure_1 (MYBOXES.description, box '((0,0),
(1,1))')
</programlisting>
and the operator
<programlisting>
MYBOXES.description === box '((0,0),(1,1))'
MYBOXES.description === box '((0,0),
(1,1))'
</programlisting>
is that <productname>Postgres</productname>
attempts to optimize operators and can
...
...
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