Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
8ee07632
Commit
8ee07632
authored
17 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Mention hash opclasses in 'System Dependencies on Operator Classes',
which previously only talked about btree opclasses.
parent
7cac3253
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/xindex.sgml
+9
-2
9 additions, 2 deletions
doc/src/sgml/xindex.sgml
with
9 additions
and
2 deletions
doc/src/sgml/xindex.sgml
+
9
−
2
View file @
8ee07632
<!-- $PostgreSQL: pgsql/doc/src/sgml/xindex.sgml,v 1.6
0
2007/
04/25 19:48:27 neilc
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/xindex.sgml,v 1.6
1
2007/
12/02 04:36:40 tgl
Exp $ -->
<sect1 id="xindex">
<sect1 id="xindex">
<title>Interfacing Extensions To Indexes</title>
<title>Interfacing Extensions To Indexes</title>
...
@@ -893,6 +893,13 @@ ALTER OPERATOR FAMILY integer_ops USING btree ADD
...
@@ -893,6 +893,13 @@ ALTER OPERATOR FAMILY integer_ops USING btree ADD
any assumption about the behavior of operators with particular names.
any assumption about the behavior of operators with particular names.
</para>
</para>
</note>
</note>
<para>
Another important point is that an operator that
appears in a hash operator family is a candidate for hash joins,
hash aggregation, and related optimizations. The hash operator family
is essential here since it identifies the hash function(s) to use.
</para>
</sect2>
</sect2>
<sect2 id="xindex-opclass-features">
<sect2 id="xindex-opclass-features">
...
@@ -950,7 +957,7 @@ CREATE OPERATOR CLASS polygon_ops
...
@@ -950,7 +957,7 @@ CREATE OPERATOR CLASS polygon_ops
is used. In GIN, the <literal>STORAGE</> type identifies the type of
is used. In GIN, the <literal>STORAGE</> type identifies the type of
the <quote>key</> values, which normally is different from the type
the <quote>key</> values, which normally is different from the type
of the indexed column — for example, an operator class for
of the indexed column — for example, an operator class for
integer
array columns might have keys that are just integers. The
integer
-
array columns might have keys that are just integers. The
GIN <function>extractValue</> and <function>extractQuery</> support
GIN <function>extractValue</> and <function>extractQuery</> support
routines are responsible for extracting keys from indexed values.
routines are responsible for extracting keys from indexed values.
</para>
</para>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment