Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix harmless compiler warnings about incomplete structure initializers. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
604c11d1a39f09e47b6fcee0f8b1c105 |
User & Date: | drh 2017-07-12 18:05:54 |
Context
2017-07-12
| ||
20:43 | Smaller and faster implementation for vdbeFreeOpArray() and freeP4(). check-in: 0c805935 user: drh tags: trunk | |
18:05 | Fix harmless compiler warnings about incomplete structure initializers. check-in: 604c11d1 user: drh tags: trunk | |
17:26 | Remove unnecessary EP_Leaf settings on the Expr object. check-in: f951c8b7 user: drh tags: trunk | |
Changes
Changes to ext/misc/stmt.c.
281 281 0, /* xUpdate */ 282 282 0, /* xBegin */ 283 283 0, /* xSync */ 284 284 0, /* xCommit */ 285 285 0, /* xRollback */ 286 286 0, /* xFindMethod */ 287 287 0, /* xRename */ 288 + 0, /* xSavepoint */ 289 + 0, /* xRelease */ 290 + 0, /* xRollbackTo */ 288 291 }; 289 292 290 293 #endif /* SQLITE_OMIT_VIRTUALTABLE */ 291 294 292 295 int sqlite3StmtVtabInit(sqlite3 *db){ 293 296 int rc = SQLITE_OK; 294 297 #ifndef SQLITE_OMIT_VIRTUALTABLE
Changes to src/dbstat.c.
690 690 0, /* xUpdate */ 691 691 0, /* xBegin */ 692 692 0, /* xSync */ 693 693 0, /* xCommit */ 694 694 0, /* xRollback */ 695 695 0, /* xFindMethod */ 696 696 0, /* xRename */ 697 + 0, /* xSavepoint */ 698 + 0, /* xRelease */ 699 + 0, /* xRollbackTo */ 697 700 }; 698 701 return sqlite3_create_module(db, "dbstat", &dbstat_module, 0); 699 702 } 700 703 #elif defined(SQLITE_ENABLE_DBSTAT_VTAB) 701 704 int sqlite3DbstatRegister(sqlite3 *db){ return SQLITE_OK; } 702 705 #endif /* SQLITE_ENABLE_DBSTAT_VTAB */