aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/insert_monotonic/not_all_fail.sql
blob: b00b52d8801b90d564b341e0427679133256056b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* custom error:All appends within the same commit should have the same "monotonic_keys" flag*/
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;