Hi,

since commit 68f6dc7af1013f29, newlines in the .dump output are escaped
with char().  This can make the resulting SQL too complex:

$ sqlite3 test.db "create table t(x); insert into t 
values(replace(printf('%1000s', ''), ' ', char(10)));"
$ sqlite3 test.db .dump | sqlite3
Error: near line 4: Expression tree is too large (maximum depth 1000)

(originally reported here: http://stackoverflow.com/q/43145117/11654)


Regards,
Clemens
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to