mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Fix code that checks to see if an index can be considered to match the query's
requested sort order. It was assuming that build_index_pathkeys always generates a pathkey per index column, which was not true if implied equality deduction had determined that two index columns were effectively equated to each other. Simplest fix seems to be to install an option that causes build_index_pathkeys to support this behavior as well as the original one. Per report from Brian Hirt.
This commit is contained in:
@ -9,7 +9,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/optimizer/path/indxpath.c,v 1.198 2006/01/26 02:35:49 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/optimizer/path/indxpath.c,v 1.199 2006/01/29 17:27:42 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -343,7 +343,8 @@ find_usable_indexes(PlannerInfo *root, RelOptInfo *rel,
|
||||
if (istoplevel && index_is_ordered && !isjoininner)
|
||||
{
|
||||
index_pathkeys = build_index_pathkeys(root, index,
|
||||
ForwardScanDirection);
|
||||
ForwardScanDirection,
|
||||
true);
|
||||
useful_pathkeys = truncate_useless_pathkeys(root, rel,
|
||||
index_pathkeys);
|
||||
}
|
||||
@ -1705,7 +1706,7 @@ match_index_to_query_keys(PlannerInfo *root,
|
||||
ListCell *r;
|
||||
|
||||
/* Get the pathkeys that exactly describe the index */
|
||||
index_pathkeys = build_index_pathkeys(root, index, indexscandir);
|
||||
index_pathkeys = build_index_pathkeys(root, index, indexscandir, false);
|
||||
|
||||
/*
|
||||
* Can we match to the query's requested pathkeys? The inner loop skips
|
||||
|
Reference in New Issue
Block a user