aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/insert_monotonic/not_all_fail.sql
blob: a209e180d70e834217f505ddc7b82f0d27786b11 (plain) (blame)
1
2
3
4
5
6
7
8
9
USE plato;

INSERT INTO Output WITH MONOTONIC_KEYS
SELECT * FROM Input1
ORDER BY key, subkey;

INSERT INTO Output
SELECT * FROM Input2
ORDER BY key, subkey;