]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix nbtree skip array transformation comments.
authorPeter Geoghegan <pg@bowt.ie>
Wed, 7 Jan 2026 17:53:07 +0000 (12:53 -0500)
committerPeter Geoghegan <pg@bowt.ie>
Wed, 7 Jan 2026 17:53:07 +0000 (12:53 -0500)
Fix comments that incorrectly described transformations performed by the
"Avoid extra index searches through preprocessing" mechanism introduced
by commit b3f1a13f.

Author: Yugo Nagata <nagata@sraoss.co.jp>
Reviewed-By: Chao Li <li.evan.chao@gmail.com>
Reviewed-By: Peter Geoghegan <pg@bowt.ie>
Discussion: https://postgr.es/m/20251230190145.c3c88c5eb0f88b136adda92f@sraoss.co.jp
Backpatch-through: 18

src/backend/access/nbtree/nbtpreprocesskeys.c

index a2248911ae5aa31ca579a2a621125b23617eaa88..5235ef9a8f544764719ade1e790db26861b66afc 100644 (file)
@@ -1406,7 +1406,7 @@ _bt_skiparray_strat_adjust(IndexScanDesc scan, ScanKey arraysk,
 }
 
 /*
- * Convert skip array's > low_compare key into a >= key
+ * Convert skip array's < high_compare key into a <= key
  */
 static void
 _bt_skiparray_strat_decrement(IndexScanDesc scan, ScanKey arraysk,
@@ -1464,7 +1464,7 @@ _bt_skiparray_strat_decrement(IndexScanDesc scan, ScanKey arraysk,
 }
 
 /*
- * Convert skip array's < low_compare key into a <= key
+ * Convert skip array's > low_compare key into a >= key
  */
 static void
 _bt_skiparray_strat_increment(IndexScanDesc scan, ScanKey arraysk,