aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/insert_monotonic/non_existing_fail.sql
blob: b60c6bb81fd55eae0364c780b05b39ae5fa3aedb (plain) (blame)
1
2
3
4
5
6
/* custom error:Insert with "monotonic_keys" setting cannot be used with a non-existent table*/
USE plato;

INSERT INTO Output WITH MONOTONIC_KEYS
SELECT 1 as key
ORDER BY key;