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
da1ad323
Commit
da1ad323
authored
Jul 25, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update comments.
parent
b9e6f068
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
src/backend/optimizer/path/indxpath.c
src/backend/optimizer/path/indxpath.c
+6
-4
No files found.
src/backend/optimizer/path/indxpath.c
View file @
da1ad323
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.8
7 2000/07/13 05:47:29
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.8
8 2000/07/25 04:30:42
tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -461,9 +461,11 @@ extract_or_indexqual_conditions(RelOptInfo *rel,
...
@@ -461,9 +461,11 @@ extract_or_indexqual_conditions(RelOptInfo *rel,
* Returns a list of all the RestrictInfo nodes for clauses that can be
* Returns a list of all the RestrictInfo nodes for clauses that can be
* used with this index.
* used with this index.
*
*
* The list is ordered by index key (but as far as I can tell, this is
* The list is ordered by index key. (This is not depended on by any part
* an implementation artifact of this routine, and is not depended on by
* of the planner, as far as I can tell; but some parts of the executor
* any user of the returned list --- tgl 7/99).
* do assume that the indxqual list ultimately delivered to the executor
* is so ordered. One such place is _bt_orderkeys() in the btree support.
* Perhaps that ought to be fixed someday --- tgl 7/00)
*
*
* Note that in a multi-key index, we stop if we find a key that cannot be
* Note that in a multi-key index, we stop if we find a key that cannot be
* used with any clause. For example, given an index on (A,B,C), we might
* used with any clause. For example, given an index on (A,B,C), we might
...
...
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