| OLD | NEW |
| 1 From f4b79cfaefb87fa2c37a860c5a64f320a5265f99 Mon Sep 17 00:00:00 2001 | 1 From 8451a8f615c1542a79ae190d4117e10f263857f7 Mon Sep 17 00:00:00 2001 |
| 2 From: Scott Hess <shess@chromium.org> | 2 From: Scott Hess <shess@chromium.org> |
| 3 Date: Mon, 23 Mar 2015 11:24:11 -0700 | 3 Date: Mon, 23 Mar 2015 11:24:11 -0700 |
| 4 Subject: [PATCH] [backport] Fix collation dequoting. | 4 Subject: [PATCH 11/11] [backport] Fix collation dequoting. |
| 5 | 5 |
| 6 Backport https://www.sqlite.org/src/info/eddc05e7bb31fae7 | 6 Backport https://www.sqlite.org/src/info/eddc05e7bb31fae7 |
| 7 "Fix a problem causing collation sequence names to be dequoted | 7 "Fix a problem causing collation sequence names to be dequoted |
| 8 multiple times under some circumstances." | 8 multiple times under some circumstances." |
| 9 | 9 |
| 10 BUG=469082 | 10 BUG=469082 |
| 11 --- | 11 --- |
| 12 third_party/sqlite/src/src/expr.c | 7 ++-- | 12 third_party/sqlite/src/src/expr.c | 7 ++-- |
| 13 third_party/sqlite/src/src/parse.y | 6 ++-- | 13 third_party/sqlite/src/src/parse.y | 6 ++-- |
| 14 third_party/sqlite/src/src/sqliteInt.h | 2 +- | 14 third_party/sqlite/src/src/sqliteInt.h | 2 +- |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 + INSERT INTO c1 VALUES(2, 'abb'); | 194 + INSERT INTO c1 VALUES(2, 'abb'); |
| 195 + INSERT INTO c1 VALUES(3, 'wxz'); | 195 + INSERT INTO c1 VALUES(3, 'wxz'); |
| 196 + INSERT INTO c1 VALUES(4, 'WXY'); | 196 + INSERT INTO c1 VALUES(4, 'WXY'); |
| 197 + SELECT x, y FROM c1 ORDER BY y COLLATE """"""""; | 197 + SELECT x, y FROM c1 ORDER BY y COLLATE """"""""; |
| 198 +} {2 abb 1 ABC 4 WXY 3 wxz} | 198 +} {2 abb 1 ABC 4 WXY 3 wxz} |
| 199 + | 199 + |
| 200 finish_test | 200 finish_test |
| 201 + | 201 + |
| 202 + | 202 + |
| 203 -- | 203 -- |
| 204 2.2.1 | 204 2.4.5 |
| 205 | 205 |
| OLD | NEW |