Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove a superfluous variable from a test. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d3092d0d870fbfac16a263ebe4d3e1f0 |
User & Date: | mistachkin 2016-06-15 18:49:15.911 |
Context
2016-06-15
| ||
20:22 | Prevent the SQLiteCommand.ExecuteScalar method from throwing an exception when there are no result columns. check-in: 29e1de6a30 user: mistachkin tags: trunk | |
19:10 | Add test case for ticket [754cb60f47]. check-in: bba40ece0b user: mistachkin tags: tkt-754cb60f47 | |
18:49 | Remove a superfluous variable from a test. check-in: d3092d0d87 user: mistachkin tags: trunk | |
2016-06-03
| ||
17:40 | Update list of SQLite core library return codes. check-in: 3f4f0cf495 user: mistachkin tags: trunk | |
Changes
Changes to Tests/basic.eagle.
︙ | ︙ | |||
4028 4029 4030 4031 4032 4033 4034 | bar main t1 z MYTYPE System.String}}} ############################################################################### runTest {test data-1.79 {DateTime using Int64} -setup { setupDb [set fileName data-1.79.db] "" UnixEpoch } -body { | < < | | 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 | bar main t1 z MYTYPE System.String}}} ############################################################################### runTest {test data-1.79 {DateTime using Int64} -setup { setupDb [set fileName data-1.79.db] "" UnixEpoch } -body { sql execute $db { CREATE TABLE t1(x INTEGER, y DATETIME); INSERT INTO t1 (x, y) VALUES(1, strftime('%s', '2038-01-20')); } sql execute -execute reader -format list -datetimeformat \ [getDateTimeFormat] $db "SELECT x, y FROM t1;" } -cleanup { cleanupDb $fileName unset -nocomplain db fileName } -constraints \ {eagle monoBug28 command.sql compile.DATA SQLite System.Data.SQLite} -result \ {1 {2038-01-20 00:00:00}}} ############################################################################### runTest {test data-1.80 {page size using PRAGMA} -setup { |
︙ | ︙ |