Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Unset some global TCL variables prior to use in test where prior tests can have those same variables set to an array value. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
49bef00e5cda600ceb964148bf745de4 |
User & Date: | drh 2010-05-03 19:20:47.000 |
Context
2010-05-04
| ||
10:36 | Test that the correct number of padding frames are appended to the log file after committing a transaction in synchronous=FULL mode. (check-in: a60104aa7e user: dan tags: trunk) | |
2010-05-03
| ||
19:20 | Unset some global TCL variables prior to use in test where prior tests can have those same variables set to an array value. (check-in: 49bef00e5c user: drh tags: trunk) | |
19:17 | Fix a bug in the computation of the current time for the alternative CURRENT_TIMESTAMP functions used when SQLITE_OMIT_DATETIME is defined. (check-in: e7ded46b5e user: drh tags: trunk) | |
Changes
Changes to test/table.test.
︙ | ︙ | |||
600 601 602 603 604 605 606 607 608 609 610 611 612 613 | dt text DEFAULT CURRENT_DATE, dttm text DEFAULT CURRENT_TIMESTAMP ); SELECT * FROM tablet8; } } {} set i 0 foreach {date time seconds} { 1976-07-04 12:00:00 205329600 1994-04-16 14:00:00 766504800 2000-01-01 00:00:00 946684800 2003-12-31 12:34:56 1072874096 } { incr i | > | 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 | dt text DEFAULT CURRENT_DATE, dttm text DEFAULT CURRENT_TIMESTAMP ); SELECT * FROM tablet8; } } {} set i 0 unset -nocomplain date time seconds foreach {date time seconds} { 1976-07-04 12:00:00 205329600 1994-04-16 14:00:00 766504800 2000-01-01 00:00:00 946684800 2003-12-31 12:34:56 1072874096 } { incr i |
︙ | ︙ |
Changes to test/walthread.test.
︙ | ︙ | |||
504 505 506 507 508 509 510 511 512 | if {[file size test.db-wal] < [log_file_size [expr 64*1024] 1024]} { error "Somehow failed to create a large log file" } puts "Database with large log file recovered. Now running clients..." } -thread T 5 { db eval { SELECT count(*) FROM t1 } } finish_test | > | 504 505 506 507 508 509 510 511 512 513 | if {[file size test.db-wal] < [log_file_size [expr 64*1024] 1024]} { error "Somehow failed to create a large log file" } puts "Database with large log file recovered. Now running clients..." } -thread T 5 { db eval { SELECT count(*) FROM t1 } } unset -nocomplain seconds finish_test |