Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix marshalling of the sqlite3_index_info.estimatedCost field on 32-bit operating systems. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1e9d3b0b006e37d2fc5eb3420f029c83 |
User & Date: | mistachkin 2013-07-15 20:10:37.755 |
Context
2013-07-16
| ||
02:25 | Revise field offset handling in the virtual table marshalling code to deal with structure packing on 64-bit operating systems. check-in: e9136a6d37 user: mistachkin tags: trunk | |
2013-07-15
| ||
20:10 | Fix marshalling of the sqlite3_index_info.estimatedCost field on 32-bit operating systems. check-in: 1e9d3b0b00 user: mistachkin tags: trunk | |
19:32 | Bump all versions to 1.0.88.0. Update version history docs. check-in: f0b2c4a2b1 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteModule.cs.
︙ | ︙ | |||
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 | offset += SQLiteMarshal.SizeOfStructInt(); SQLiteMarshal.WriteInt32(pIndex, offset, index.Outputs.OrderByConsumed); offset += SQLiteMarshal.SizeOfStructInt(); SQLiteMarshal.WriteDouble(pIndex, offset, index.Outputs.EstimatedCost); } #endregion /////////////////////////////////////////////////////////////////////// | > > > | 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 | offset += SQLiteMarshal.SizeOfStructInt(); SQLiteMarshal.WriteInt32(pIndex, offset, index.Outputs.OrderByConsumed); offset += SQLiteMarshal.SizeOfStructInt(); if (offset % sizeof(double) != 0) offset += SQLiteMarshal.SizeOfStructInt(); SQLiteMarshal.WriteDouble(pIndex, offset, index.Outputs.EstimatedCost); } #endregion /////////////////////////////////////////////////////////////////////// |
︙ | ︙ |