Mixed Sort Directions Disable Index Usage
Copyright © 2023 PawSQL
Problem Definition
For ORDER BY clauses, all expressions must be sorted in the same ASC or DESC direction to utilize indexes. If an ORDER BY statement uses different sort directions on multiple conditions, indexes cannot be used.
For example, creating an index on the lineitem
table in TPCH:
create index l_partkey_suppkey_idx on lineitem(l_partkey, l_suppkey);