not_all_fail.sql 253 B

12345678910
  1. /* custom error:All appends within the same commit should have the same "monotonic_keys" flag*/
  2. USE plato;
  3. INSERT INTO Output WITH MONOTONIC_KEYS
  4. SELECT * FROM Input1
  5. ORDER BY key, subkey;
  6. INSERT INTO Output
  7. SELECT * FROM Input2
  8. ORDER BY key, subkey;