blob: f1b86675c32a42f9875584c53ac42bb5dae155f9 (
plain) (
blame)
1
2
3
4
5
6
|
/* custom error:Table "Input" row type differs from the written row type: Struct<-subkey:String>*/
USE plato;
INSERT INTO Input
SELECT * FROM Input WITH SCHEMA Struct<key:String, value:String>;
|