SQLite

Check-in [4b41d989e8]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Remove an "explain" command from test script without_rowid1.test that was accidentally committed.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | omit-rowid
Files: files | file ages | folders
SHA1: 4b41d989e894b9214a9b973228ef8446356f9fbb
User & Date: dan 2013-11-05 16:56:11.709
Context
2013-11-05
17:30
Fix a bug in secondary index initialization when the secondary index is a superset of the PRIMARY KEY for a WITHOUT ROWID table. (check-in: 52a3d88519 user: drh tags: omit-rowid)
16:56
Remove an "explain" command from test script without_rowid1.test that was accidentally committed. (check-in: 4b41d989e8 user: dan tags: omit-rowid)
16:39
Unless the destination table is completely empty, disable the xfer optimization for WITHOUT ROWID tables. (check-in: 3877c9f505 user: dan tags: omit-rowid)
Changes
Unified Diff Ignore Whitespace Patch
Changes to test/without_rowid1.test.
195
196
197
198
199
200
201
202
203
204
205
206
207
  INSERT INTO t4 VALUES('ii');
  INSERT INTO t4 VALUES('iii');

  INSERT INTO t3 SELECT * FROM t4;
  SELECT * FROM t3;
} {i ii iii}
  
  explain_i {
  INSERT INTO t3 SELECT * FROM t4;
  }

finish_test








<
<
<
<


195
196
197
198
199
200
201




202
203
  INSERT INTO t4 VALUES('ii');
  INSERT INTO t4 VALUES('iii');

  INSERT INTO t3 SELECT * FROM t4;
  SELECT * FROM t3;
} {i ii iii}
  




finish_test