File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/backend/optimizer/path Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.83 2000/04/16 04:41:01 tgl Exp $
12
+ * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.83.2.1 2000/07/13 05:52:18 tgl Exp $
13
13
*
14
14
*-------------------------------------------------------------------------
15
15
*/
@@ -196,7 +196,7 @@ create_index_paths(Query *root,
196
196
useful_for_ordering (root , rel , index , ForwardScanDirection ))
197
197
add_path (rel , (Path * )
198
198
create_index_path (root , rel , index ,
199
- NIL ,
199
+ restrictclauses ,
200
200
ForwardScanDirection ));
201
201
}
202
202
@@ -208,7 +208,7 @@ create_index_paths(Query *root,
208
208
if (useful_for_ordering (root , rel , index , BackwardScanDirection ))
209
209
add_path (rel , (Path * )
210
210
create_index_path (root , rel , index ,
211
- NIL ,
211
+ restrictclauses ,
212
212
BackwardScanDirection ));
213
213
214
214
/*
You can’t perform that action at this time.
0 commit comments