|
| 1 | +-- Licensed to the Apache Software Foundation (ASF) under one |
| 2 | +-- or more contributor license agreements. See the NOTICE file |
| 3 | +-- distributed with this work for additional information |
| 4 | +-- regarding copyright ownership. The ASF licenses this file |
| 5 | +-- to you under the Apache License, Version 2.0 (the |
| 6 | +-- "License"); you may not use this file except in compliance |
| 7 | +-- with the License. You may obtain a copy of the License at |
| 8 | +-- |
| 9 | +-- http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +-- |
| 11 | +-- Unless required by applicable law or agreed to in writing, |
| 12 | +-- software distributed under the License is distributed on an |
| 13 | +-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | +-- KIND, either express or implied. See the License for the |
| 15 | +-- specific language governing permissions and limitations |
| 16 | +-- under the License. |
| 17 | + |
| 18 | +-- ArrayIntersect mixes in CodegenDispatchFallback, so with allowIncompatible unset its |
| 19 | +-- Incompatible element-order case routes through the JVM codegen dispatcher and matches Spark |
| 20 | +-- exactly, including the right-longer-than-left case the native path orders differently (no |
| 21 | +-- sort_array workaround needed here). |
| 22 | + |
| 23 | +statement |
| 24 | +CREATE TABLE test_ai_dispatch(a array<int>, b array<int>) USING parquet |
| 25 | + |
| 26 | +statement |
| 27 | +INSERT INTO test_ai_dispatch VALUES (array(2, 1), array(3, 1, 2)), (array(3, 1), array(1, 2, 3, 4)), (array(1, NULL), array(NULL, 2)), (NULL, array(1)) |
| 28 | + |
| 29 | +query |
| 30 | +SELECT array_intersect(a, b) FROM test_ai_dispatch |
| 31 | + |
| 32 | +query |
| 33 | +SELECT array_intersect(array(2, 1), array(3, 1, 2)), array_intersect(array(3, 1), array(1, 2, 3, 4)) |
0 commit comments