(a: Array<'a>, b: Array<'a>)
| 2833 | |
| 2834 | #[sqlfunc(is_infix_op = true, sqlname = "<@")] |
| 2835 | fn array_contains_array_rev<'a>(a: Array<'a>, b: Array<'a>) -> bool { |
| 2836 | array_contains_array(b, a) |
| 2837 | } |
| 2838 | |
| 2839 | #[sqlfunc( |
| 2840 | output_type_expr = "input_types[0].scalar_type.without_modifiers().nullable(true)", |
nothing calls this directly
no test coverage detected