pub fn sort_expr_list_eq_strict_order(
    list1: &[PhysicalSortExpr],
    list2: &[PhysicalSortExpr]
) -> bool
Expand description

Strictly compare the two sort expr lists in the given order.

For Physical Sort Exprs, the order matters:

SortExpr(‘a’,‘b’,‘c’) != SortExpr(‘c’,‘b’,‘a’)