Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a obsolete comment related to updating the CHECK constraint on the BLOB table when moving up to version 2.0 or later. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
66807d30296ebb52d34c38f48c6a00a9 |
| User & Date: | drh 2017-03-13 20:47:59.403 |
Context
|
2017-03-13
| ||
| 23:28 | Correct filename title in comment for man_page_command_list.tcl check-in: 260e3c750d user: andygoth tags: trunk | |
| 22:24 | Merged from trunk for testing before pushing back to trunk. Closed-Leaf check-in: f955c632c4 user: rberteig tags: rkb-2.0-tests | |
| 20:47 | Fix a obsolete comment related to updating the CHECK constraint on the BLOB table when moving up to version 2.0 or later. check-in: 66807d3029 user: drh tags: trunk | |
|
2017-03-12
| ||
| 23:32 | More refactoring of "control artifact" to "structural artifact". Also improve the wording. All in the selfcheck document. check-in: 43c3d95a31 user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
1489 1490 1491 1492 1493 1494 1495 |
g.zAuxSchema = db_get("aux-schema","");
g.eHashPolicy = db_get_int("hash-policy",-1);
if( g.eHashPolicy<0 ){
g.eHashPolicy = hname_default_policy();
db_set_int("hash-policy", g.eHashPolicy, 0);
}
| | | | 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 |
g.zAuxSchema = db_get("aux-schema","");
g.eHashPolicy = db_get_int("hash-policy",-1);
if( g.eHashPolicy<0 ){
g.eHashPolicy = hname_default_policy();
db_set_int("hash-policy", g.eHashPolicy, 0);
}
/* Make a change to the CHECK constraint on the BLOB table for
** version 2.0 and later.
*/
rebuild_schema_update_2_0(); /* Do the Fossil-2.0 schema updates */
}
/*
** Flags for the db_find_and_open_repository() function.
*/
|
| ︙ | ︙ |