diff options
Diffstat (limited to 'src/backend/optimizer/path/indxpath.c')
-rw-r--r-- | src/backend/optimizer/path/indxpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c index 5f464153942..4296316b5c9 100644 --- a/src/backend/optimizer/path/indxpath.c +++ b/src/backend/optimizer/path/indxpath.c @@ -3966,7 +3966,7 @@ adjust_rowcompare_for_index(RowCompareExpr *clause, break; /* no good, volatile comparison value */ /* - * The Var side can match any column of the index. + * The Var side can match any key column of the index. */ for (i = 0; i < index->nkeycolumns; i++) { @@ -3978,7 +3978,7 @@ adjust_rowcompare_for_index(RowCompareExpr *clause, break; } - if (i >= index->ncolumns) + if (i >= index->nkeycolumns) break; /* no match found */ /* Add column number to returned list */ |