Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Resolve ambiguities in test cases in collate2.test. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | nextgen-query-plan-exp |
Files: | files | file ages | folders |
SHA1: |
dcbbcb2e6c85780276cb3a392549f70e |
User & Date: | drh 2013-06-03 19:01:26.660 |
Context
2013-06-03
| ||
19:17 | Do not use an index fullscan for an UPDATE or DELETE or if disabled by sqlite3_test_control() or sqlite3_config(). (check-in: fabb21854e user: drh tags: nextgen-query-plan-exp) | |
19:01 | Resolve ambiguities in test cases in collate2.test. (check-in: dcbbcb2e6c user: drh tags: nextgen-query-plan-exp) | |
18:50 | Fix a bug in the transitive_closure virtual table that NGQP exposes. Update between.test module to avoid using sqlite_query_plan. (check-in: aa66b86420 user: drh tags: nextgen-query-plan-exp) | |
Changes
Changes to test/collate2.test.
︙ | ︙ | |||
632 633 634 635 636 637 638 | } {aa} # Test that when one side has a default collation type and the other # does not, the collation type is used. do_test collate2-4.3 { execsql { SELECT collate2t1.a FROM collate2t1, collate2t3 | | > | > | 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 | } {aa} # Test that when one side has a default collation type and the other # does not, the collation type is used. do_test collate2-4.3 { execsql { SELECT collate2t1.a FROM collate2t1, collate2t3 WHERE collate2t1.b = collate2t3.b||'' ORDER BY +collate2t1.a DESC; } } {aa aA Aa AA} do_test collate2-4.4 { execsql { SELECT collate2t1.a FROM collate2t1, collate2t3 WHERE collate2t3.b||'' = collate2t1.b ORDER BY +collate2t1.a DESC; } } {aa aA Aa AA} do_test collate2-4.5 { execsql { DROP TABLE collate2t3; } |
︙ | ︙ |