pub fn expr_list_eq_any_order(
    list1: &[Arc<dyn PhysicalExpr>],
    list2: &[Arc<dyn PhysicalExpr>]
) -> bool
Expand description

Compare the two expr lists are equal no matter the order. For example two InListExpr can be considered to be equals no matter the order:

In(‘a’,‘b’,‘c’) == In(‘c’,‘b’,‘a’)