Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Correct file name usage by the backup workloads in the stress test. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | stress |
Files: | files | file ages | folders |
SHA1: |
06221fdffe110161c4a77272eed9568f |
User & Date: | mistachkin 2012-07-11 07:57:34.175 |
Context
2012-07-12
| ||
05:16 | Merge new stress test to trunk. check-in: e76caf8e3c user: mistachkin tags: trunk | |
2012-07-11
| ||
07:57 | Correct file name usage by the backup workloads in the stress test. Closed-Leaf check-in: 06221fdffe user: mistachkin tags: stress | |
07:41 | Cleanup 'compiled' script variable. check-in: 3a2d7926a6 user: mistachkin tags: stress | |
Changes
Changes to Tests/stress.eagle.
︙ | ︙ | |||
357 358 359 360 361 362 363 | namespace _Dynamic${id} { public static class Test${id} { public static void BackupAndGetData() { using (SQLiteConnection source = new SQLiteConnection( | | | | 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 | namespace _Dynamic${id} { public static class Test${id} { public static void BackupAndGetData() { using (SQLiteConnection source = new SQLiteConnection( "FullUri=${dstFileName};")) { source.Open(); using (SQLiteConnection destination = new SQLiteConnection( "FullUri=${srcFileName};")) { destination.Open(); source.BackupDatabase( destination, "main", "main", -1, null, 0); } } |
︙ | ︙ | |||
413 414 415 416 417 418 419 | namespace _Dynamic${id} { public static class Test${id} { public static void BackupAndGetData() { using (SQLiteConnection source = new SQLiteConnection( | | | | 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 | namespace _Dynamic${id} { public static class Test${id} { public static void BackupAndGetData() { using (SQLiteConnection source = new SQLiteConnection( "FullUri=${srcFileName};")) { source.Open(); using (SQLiteConnection destination = new SQLiteConnection( "FullUri=${dstFileName};")) { destination.Open(); source.BackupDatabase( destination, "main", "main", -1, null, 0); } } |
︙ | ︙ |