projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01e2629
)
Backpatch backwards-index-scan fix.
author
Tom Lane
<
[email protected]
>
Thu, 13 Jul 2000 05:52:18 +0000
(
05:52
+0000)
committer
Tom Lane
<
[email protected]
>
Thu, 13 Jul 2000 05:52:18 +0000
(
05:52
+0000)
src/backend/optimizer/path/indxpath.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/optimizer/path/indxpath.c
b/src/backend/optimizer/path/indxpath.c
index a9940c7cc0d7c5b72ac65f3bf0d8acd12e42fe80..45b8584e7c50722bbcfda16b1089ab06b347b409 100644
(file)
--- a/
src/backend/optimizer/path/indxpath.c
+++ b/
src/backend/optimizer/path/indxpath.c
@@
-196,7
+196,7
@@
create_index_paths(Query *root,
useful_for_ordering(root, rel, index, ForwardScanDirection))
add_path(rel, (Path *)
create_index_path(root, rel, index,
-
NIL
,
+
restrictclauses
,
ForwardScanDirection));
}
@@
-208,7
+208,7
@@
create_index_paths(Query *root,
if (useful_for_ordering(root, rel, index, BackwardScanDirection))
add_path(rel, (Path *)
create_index_path(root, rel, index,
-
NIL
,
+
restrictclauses
,
BackwardScanDirection));
/*