Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
expr_list_eq_any_order in datafusion::physical_expr - Rust
[go: Go Back, main page]

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’)