Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Record the new repository name in the configuration database when running the test-move-repository command. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
592ee15dfc13fa4a4309fe84521ade2d |
| User & Date: | drh 2014-12-16 23:39:29.897 |
| Original Comment: | Recore the new repository name in the configuration database when running the test-move-repository command. |
Context
|
2014-12-17
| ||
| 00:16 | Merge the age-in-file-tree changes into trunk. check-in: 0183c9a292 user: drh tags: trunk | |
|
2014-12-16
| ||
| 23:39 | Record the new repository name in the configuration database when running the test-move-repository command. check-in: 592ee15dfc user: drh tags: trunk | |
| 19:00 | Fix a bug in the "fossil undo" command, introduced when the sqlite3_table_column_metadata() function was used to reimplement the db_table_exists() routine, just a few days ago. check-in: b6ed6241e1 user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 |
}
if( db_open_local(zRepo)==0 ){
fossil_fatal("not in a local checkout");
return;
}
db_open_or_attach(zRepo, "test_repo", 0);
db_lset("repository", blob_str(&repo));
db_close(1);
}
/*
** Open the local database. If unable, exit with an error.
*/
| > | 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 |
}
if( db_open_local(zRepo)==0 ){
fossil_fatal("not in a local checkout");
return;
}
db_open_or_attach(zRepo, "test_repo", 0);
db_lset("repository", blob_str(&repo));
db_record_repository_filename(blob_str(&repo));
db_close(1);
}
/*
** Open the local database. If unable, exit with an error.
*/
|
| ︙ | ︙ |