The table: CREATE TABLE configuration(Key STRING, Value STRING, PRIMARY KEY (Key) );
Here is what I tried: insert into configuration(Key,Value) values(42,cast('0042' as text));
Here is the dump: INSERT INTO "configuration" VALUES(42,42);
What I wanted: INSERT INTO "configuration" VALUES(42,'0042');