Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | More typo fixes in evidence marks. No code changes. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e60eefc76fa5066720d76858f6cfca56 |
User & Date: | drh 2011-06-20 23:51:33.581 |
Context
2011-06-21
| ||
03:36 | Add a new AWK script in the tool/ folder for converting text files into C string literals. Use it for building sqlite3_analyzer. (check-in: dcb46d3f68 user: drh tags: trunk) | |
01:30 | Merge the latest trunk changes into the apple-osx branch. (check-in: 76005fdca0 user: drh tags: apple-osx) | |
01:29 | Merge the latest trunk changes into the sessions branch. (check-in: f3d148e0d1 user: drh tags: sessions) | |
2011-06-20
| ||
23:51 | More typo fixes in evidence marks. No code changes. (check-in: e60eefc76f user: drh tags: trunk) | |
22:34 | Fix typos in evidence marks on tests. (check-in: bd980be471 user: drh tags: trunk) | |
Changes
Changes to test/e_expr.test.
︙ | ︙ | |||
1594 1595 1596 1597 1598 1599 1600 | # truncate the fractional part of the REAL. # do_expr_test e_expr-31.1.1 { CAST(3.14159 AS INTEGER) } integer 3 do_expr_test e_expr-31.1.2 { CAST(1.99999 AS INTEGER) } integer 1 do_expr_test e_expr-31.1.3 { CAST(-1.99999 AS INTEGER) } integer -1 do_expr_test e_expr-31.1.4 { CAST(-0.99999 AS INTEGER) } integer 0 | | | | 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 | # truncate the fractional part of the REAL. # do_expr_test e_expr-31.1.1 { CAST(3.14159 AS INTEGER) } integer 3 do_expr_test e_expr-31.1.2 { CAST(1.99999 AS INTEGER) } integer 1 do_expr_test e_expr-31.1.3 { CAST(-1.99999 AS INTEGER) } integer -1 do_expr_test e_expr-31.1.4 { CAST(-0.99999 AS INTEGER) } integer 0 # EVIDENCE-OF: R-49503-28105 If a REAL is too large to be represented as # an INTEGER then the result of the cast is the largest negative # integer: -9223372036854775808. # do_expr_test e_expr-31.2.1 { CAST(2e+50 AS INT) } integer -9223372036854775808 do_expr_test e_expr-31.2.2 { CAST(-2e+50 AS INT) } integer -9223372036854775808 do_expr_test e_expr-31.2.3 { CAST(-9223372036854775809.0 AS INT) } integer -9223372036854775808 |
︙ | ︙ | |||
1841 1842 1843 1844 1845 1846 1847 | 2 { ( SELECT x FROM t4 WHERE y<'one' ORDER BY y ) } } { do_expr_test e_expr-36.4.$tn $expr null {} } finish_test | < | 1841 1842 1843 1844 1845 1846 1847 | 2 { ( SELECT x FROM t4 WHERE y<'one' ORDER BY y ) } } { do_expr_test e_expr-36.4.$tn $expr null {} } finish_test |
Changes to test/e_update.test.
︙ | ︙ | |||
229 230 231 232 233 234 235 | 6 "UPDATE t2 SET a = b WHERE rowid>2" {3 1 4 1 5 9 2 2 2} 6 "UPDATE t2 SET b=6, c=5 WHERE a=b AND b=c" {3 1 4 1 5 9 2 6 5} } | | | | 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | 6 "UPDATE t2 SET a = b WHERE rowid>2" {3 1 4 1 5 9 2 2 2} 6 "UPDATE t2 SET b=6, c=5 WHERE a=b AND b=c" {3 1 4 1 5 9 2 6 5} } # EVIDENCE-OF: R-34751-18293 If a single column-name appears more than # once in the list of assignment expressions, all but the rightmost # occurrence is ignored. # do_update_tests e_update-1.6 -query { SELECT * FROM t2 } { 1 "UPDATE t2 SET c=5, c=6, c=7 WHERE rowid=1" {3 1 7 1 5 9 2 6 5} 2 "UPDATE t2 SET c=7, c=6, c=5 WHERE rowid=1" {3 1 5 1 5 9 2 6 5} 3 "UPDATE t2 SET c=5, b=6, c=7 WHERE rowid=1" {3 6 7 1 5 9 2 6 5} |
︙ | ︙ | |||
601 602 603 604 605 606 607 | 4 "UPDATE t7 SET s = q ORDER BY q DESC LIMIT 5" {6 7 8 9 10} } } ;# ifcapable update_delete_limit finish_test | < | 601 602 603 604 605 606 607 | 4 "UPDATE t7 SET s = q ORDER BY q DESC LIMIT 5" {6 7 8 9 10} } } ;# ifcapable update_delete_limit finish_test |