Jorgen Loland
2c780b461d
Bug#16540042: WRONG QUERY RESULT WHEN USING RANGE OVER
...
PARTIAL INDEX
Consider the following table definition:
CREATE TABLE t (
my_col CHAR(10),
...
INDEX my_idx (my_col(1))
)
The my_idx index is not able to distinguish between rows with
equal first-character my_col-values (e.g. "f", "foo", "fee").
Prior to this CS, the range optimizer would translate
"WHERE my_col NOT IN ('f', 'h')" into (optimizer trace syntax)
"ranges": [
"NULL < my_col < f",
"f < my_col"
]
But this was not correct because the rows with values "foo"
and "fee" would not belong to any of those ranges. However, the
predicate "my_col != 'f' AND my_col != 'h'" would translate
to
"ranges": [
"NULL < my_col"
]
because get_mm_leaf() changes from "<" to "<=" for partial
keyparts. This CS changes the range optimizer implementation
for NOT IN to behave like a conjunction of NOT EQUAL: it
replaces "<" with "<=" for all but the first range when the
keypart is partial.
2013-04-12 09:39:56 +02:00
..
2011-06-30 17:31:31 +02:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2011-09-14 16:10:18 +02:00
2013-02-25 10:42:40 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2010-08-18 13:29:04 +02:00
2010-08-16 14:53:30 +02:00
2013-02-25 10:42:40 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-05-21 10:21:08 +02:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2012-10-08 19:40:30 +05:30
2013-03-19 13:29:12 +01:00
2011-07-04 01:25:49 +02:00
2011-07-04 01:25:49 +02:00
2013-03-19 13:29:12 +01:00
2013-03-19 13:29:12 +01:00
2013-02-25 15:26:00 +01:00
2013-03-19 13:29:12 +01:00
2011-07-04 01:25:49 +02:00
2013-03-19 13:29:12 +01:00
2013-02-25 15:26:00 +01:00
2013-02-25 15:26:00 +01:00
2013-02-25 15:26:00 +01:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2011-06-30 17:46:53 +02:00
2012-08-07 19:07:13 +05:30
2013-02-25 15:26:00 +01:00
2013-03-19 13:29:12 +01:00
2013-02-25 15:26:00 +01:00
2013-03-19 13:29:12 +01:00
2013-03-19 15:53:48 +01:00
2013-03-19 15:53:48 +01:00
2013-03-19 15:53:48 +01:00
2011-08-15 20:12:11 +02:00
2013-03-19 13:29:12 +01:00
2013-02-14 17:03:49 +01:00
2013-01-30 17:51:52 +01:00
2013-03-19 13:29:12 +01:00
2012-10-08 19:40:30 +05:30
2013-03-19 13:29:12 +01:00
2013-03-19 13:29:12 +01:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2013-03-19 15:53:48 +01:00
2011-07-04 01:25:49 +02:00
2011-06-30 17:46:53 +02:00
2013-01-31 09:13:42 +04:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2013-02-25 15:26:00 +01:00
2011-06-30 17:46:53 +02:00
2013-02-25 15:26:00 +01:00
2013-03-19 15:53:48 +01:00
2013-03-19 13:29:12 +01:00
2012-02-15 17:21:38 +01:00
2013-03-31 06:52:16 +05:30
2011-10-12 17:41:25 +04:00
2012-05-21 10:47:12 +02:00
2013-03-19 15:53:48 +01:00
2013-02-25 15:26:00 +01:00
2013-03-19 13:29:12 +01:00
2013-03-28 19:17:28 +05:30
2013-03-19 15:53:48 +01:00
2013-01-30 17:51:52 +01:00
2013-01-30 17:51:52 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2012-10-08 19:40:30 +05:30
2013-03-19 15:53:48 +01:00
2013-03-28 14:18:51 +05:30
2013-03-26 20:52:01 +02:00
2013-03-19 15:53:48 +01:00
2012-06-29 13:36:01 +02:00
2011-06-30 17:46:53 +02:00
2012-08-07 11:48:36 +05:30
2012-12-11 22:04:30 +04:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2011-07-03 17:47:37 +02:00
2013-03-19 15:53:48 +01:00
2013-03-19 13:29:12 +01:00
2013-03-19 15:53:48 +01:00
2013-02-05 11:06:38 +05:30
2013-03-19 15:53:48 +01:00
2011-12-13 17:44:19 +02:00
2011-12-13 17:44:19 +02:00
2013-04-12 09:39:56 +02:00
2011-06-30 17:46:53 +02:00
2012-10-08 19:40:30 +05:30
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-02-25 15:26:00 +01:00
2013-02-14 17:03:49 +01:00
2013-01-30 17:51:52 +01:00
2013-02-25 15:26:00 +01:00
2013-03-19 13:29:12 +01:00
2013-03-19 13:29:12 +01:00
2012-11-07 19:08:33 +05:30
2011-06-30 17:46:53 +02:00
2013-02-25 15:26:00 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:37:13 +02:00
2013-03-27 11:59:40 +05:30
2013-03-19 13:29:12 +01:00
2011-06-30 17:46:53 +02:00
2012-02-16 10:48:16 +01:00
2012-02-16 10:48:16 +01:00
2013-02-25 15:26:00 +01:00
2012-02-16 10:48:16 +01:00
2012-02-16 10:48:16 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-02-25 15:26:00 +01:00
2013-02-25 15:26:00 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2013-03-15 08:56:20 +05:30
2013-02-25 15:26:00 +01:00
2013-03-19 13:29:12 +01:00
2013-03-19 13:29:12 +01:00
2013-02-25 15:26:00 +01:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2013-02-25 15:26:00 +01:00
2013-03-25 11:27:12 +05:30
2011-06-30 17:46:53 +02:00
2012-02-16 10:48:16 +01:00
2013-03-19 13:29:12 +01:00
2013-02-25 15:26:00 +01:00
2013-02-25 15:26:00 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2012-10-04 16:15:13 +02:00
2013-03-19 13:29:12 +01:00
2012-10-08 19:40:30 +05:30
2011-06-30 17:46:53 +02:00
2013-03-28 17:41:22 +02:00
2013-03-28 17:41:22 +02:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2013-01-30 17:51:52 +01:00
2013-01-30 17:51:52 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2013-03-19 13:29:12 +01:00
2013-03-19 13:29:12 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2012-12-11 22:04:30 +04:00
2013-01-15 15:30:26 +05:30
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2011-06-30 17:46:53 +02:00
2013-02-25 15:26:00 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-29 09:28:31 +05:30
2013-03-19 15:53:48 +01:00
2013-03-19 13:29:12 +01:00
2012-09-17 17:06:18 +05:30
2012-05-28 11:14:43 +05:30
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2013-03-19 13:29:12 +01:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2012-06-12 15:04:57 +02:00
2011-06-30 17:46:53 +02:00
2013-02-25 15:26:00 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2013-03-19 15:53:48 +01:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2013-03-30 19:24:54 +05:30
2011-06-30 17:46:53 +02:00
2013-03-19 15:08:19 +01:00
2013-03-14 15:33:25 +01:00
2013-03-19 13:29:12 +01:00
2012-09-12 08:59:44 +02:00
2013-02-25 15:26:00 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-07 12:12:58 +05:30
2011-06-30 17:46:53 +02:00
2013-02-26 17:57:05 +05:30
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2013-02-14 17:03:49 +01:00
2011-11-15 22:00:14 +04:00
2011-06-30 17:46:53 +02:00
2012-10-31 12:40:48 +05:30
2012-06-29 13:36:01 +02:00
2013-02-25 15:26:00 +01:00
2011-06-30 17:46:53 +02:00
2012-10-21 20:34:41 +01:00
2012-10-12 22:59:21 +02:00
2013-02-25 15:26:00 +01:00
2011-11-17 09:00:58 +01:00
2010-12-07 16:11:13 +00:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-28 14:18:51 +05:30
2013-03-19 13:29:12 +01:00
2013-04-02 16:20:49 +02:00
2013-03-20 11:20:12 +01:00
2011-06-30 17:46:53 +02:00
2013-02-25 15:26:00 +01:00
2013-03-21 22:51:40 +05:30
2013-02-25 15:26:00 +01:00
2012-10-04 16:15:13 +02:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2013-03-19 15:53:48 +01:00
2013-02-25 15:26:00 +01:00
2013-03-12 22:44:32 +05:30
2013-03-21 11:40:43 +05:30
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2011-07-04 01:25:49 +02:00
2012-09-22 18:07:04 +05:30
2010-10-06 11:34:28 -03:00
2012-02-16 10:48:16 +01:00
2013-03-19 13:29:12 +01:00
2011-07-11 11:27:52 +02:00
2011-06-30 17:46:53 +02:00
2013-04-08 15:25:45 +05:30
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:08:19 +01:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-02-18 19:13:06 +05:30
2012-08-24 10:17:08 +02:00
2013-03-19 15:53:48 +01:00
2013-03-19 13:29:12 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2013-03-19 15:53:48 +01:00
2011-06-30 17:46:53 +02:00
2013-03-19 13:29:12 +01:00
2013-02-25 15:26:00 +01:00
2011-06-30 17:46:53 +02:00
2011-06-30 17:46:53 +02:00
2012-09-18 17:32:02 +02:00
2011-07-04 01:25:49 +02:00
2013-03-19 15:53:48 +01:00