non_existing_fail.sql 177 B

123456
  1. /* custom error:Insert with "monotonic_keys" setting cannot be used with a non-existent table*/
  2. USE plato;
  3. INSERT INTO Output WITH MONOTONIC_KEYS
  4. SELECT 1 as key
  5. ORDER BY key;