Re: [sqlite] Probable bug with SQLITE_DQS=0 regarding shell .schema command?

2019-08-06 Thread Olivier Mascia
> Le 6 août 2019 à 12:45, Richard Hipp a écrit : > > On 8/6/19, Olivier Mascia wrote: >> Using 3.29.0 with SQLITE_DQS. > > Is this the problem that was fixed here: > https://www.sqlite.org/src/timeline?c=fcd937d9786a82ef Indeed. — Best Regards, Meilleures salutations, Met vriendelijke

Re: [sqlite] Probable bug with SQLITE_DQS=0 regarding shell .schema command?

2019-08-06 Thread Richard Hipp
On 8/6/19, Olivier Mascia wrote: > Using 3.29.0 with SQLITE_DQS. Is this the problem that was fixed here: https://www.sqlite.org/src/timeline?c=fcd937d9786a82ef -- D. Richard Hipp d...@sqlite.org ___ sqlite-users mailing list

Re: [sqlite] Probable bug with SQLITE_DQS=0 regarding shell .schema command?

2019-08-06 Thread Olivier Mascia
> Le 6 août 2019 à 10:27, Olivier Mascia a écrit : > > Using 3.29.0 with SQLITE_DQS. > > sqlite3 test1.db "create table A(I integer);" > sqlite3 test2.db "create table B(J integer);" > > sqlite3 test1.db > sqlite> .schema > CREATE TABLE A(I integer); > > sqlite> attach 'test2.db' as cloud; >

[sqlite] Probable bug with SQLITE_DQS=0 regarding shell .schema command?

2019-08-06 Thread Olivier Mascia
Using 3.29.0 with SQLITE_DQS. sqlite3 test1.db "create table A(I integer);" sqlite3 test2.db "create table B(J integer);" sqlite3 test1.db sqlite> .schema CREATE TABLE A(I integer); sqlite> attach 'test2.db' as cloud; sqlite> .schema Error: no such column: cloud sqlite> detach cloud; sqlite>