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
1c155c8d
Commit
1c155c8d
authored
20 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Add note clarifying that indexes that support ordered scans had better
allow clauseless scans.
parent
eb4f58ad
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/indexam.sgml
+3
-2
3 additions, 2 deletions
doc/src/sgml/indexam.sgml
with
3 additions
and
2 deletions
doc/src/sgml/indexam.sgml
+
3
−
2
View file @
1c155c8d
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/indexam.sgml,v 2.
3
2005/0
3
/2
7
2
3:52
:5
1
tgl Exp $
$PostgreSQL: pgsql/doc/src/sgml/indexam.sgml,v 2.
4
2005/0
4
/2
0
2
2:19
:5
8
tgl Exp $
-->
-->
<chapter id="indexam">
<chapter id="indexam">
...
@@ -109,7 +109,8 @@ $PostgreSQL: pgsql/doc/src/sgml/indexam.sgml,v 2.3 2005/03/27 23:52:51 tgl Exp $
...
@@ -109,7 +109,8 @@ $PostgreSQL: pgsql/doc/src/sgml/indexam.sgml,v 2.3 2005/03/27 23:52:51 tgl Exp $
such a scan should include null rows. In practice this means that
such a scan should include null rows. In practice this means that
indexes that support ordered scans (have <structfield>amorderstrategy</>
indexes that support ordered scans (have <structfield>amorderstrategy</>
nonzero) must index nulls, since the planner might decide to use such a
nonzero) must index nulls, since the planner might decide to use such a
scan as a substitute for sorting. Another restriction is that an index
scan as a substitute for sorting. Such indexes must also be willing to
run a scan with no scan keys at all. Another restriction is that an index
access method that supports multiple index columns <emphasis>must</>
access method that supports multiple index columns <emphasis>must</>
support indexing null values in columns after the first, because the planner
support indexing null values in columns after the first, because the planner
will assume the index can be used for queries on just the first
will assume the index can be used for queries on just the first
...
...
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