Alexander Barkov
ba68b26ae9
Bug#58190 BETWEEN no longer uses indexes for date or datetime fields
...
Regression introduced by WL#2649.
Problem: queries with date/datetime columns did not use indexes:
set names non_latin1_charset;
select * from date_index_test
where date_column between '2010-09-01' and '2010-10-01';
before WL#2649 indexes worked fine because charset of
date/datetime
columns was BINARY which always won.
Fix: testing that collation of the operation matches collation
of the field is only needed in case of "real" string data types.
For DATE, DATETIME it's not needed.
@ mysql-test/include/ctype_numconv.inc
@ mysql-test/r/ctype_binary.result
@ mysql-test/r/ctype_cp1251.result
@ mysql-test/r/ctype_latin1.result
@ mysql-test/r/ctype_ucs.result
@ mysql-test/r/ctype_utf8.result
Adding tests
@ sql/field.h
Adding new method Field_str::match_collation_to_optimize_range()
for use in opt_range.cc to distinguish between
"real string" types like CHAR, VARCHAR, TEXT
(Field_string, Field_varstring, Field_blob)
and "almost string" types DATE, TIME, DATETIME
(Field_newdate, Field_datetime, Field_time, Field_timestamp)
@ sql/opt_range.cc
Using new method instead of checking result_type() against STRING result.
Note:
Another part of this problem (which is not regression)
is submitted separately (see bug##58329).
2010-11-19 20:15:47 +03:00
..
2007-02-26 11:49:24 +01:00
2008-08-04 21:54:44 +02:00
2008-09-09 09:49:58 +02:00
2010-02-04 23:15:47 +03:00
2009-10-22 16:51:51 +04:00
2010-10-20 16:15:32 +02:00
2009-01-09 15:10:03 +01:00
2010-11-11 20:11:05 +03:00
2010-11-11 20:11:05 +03:00
2009-11-23 17:38:42 +01:00
2009-12-03 13:31:56 +01:00
2009-12-03 13:31:56 +01:00
2010-10-21 09:37:10 +02:00
2010-05-30 13:27:44 +04:00
2010-05-28 00:07:40 +04:00
2010-11-17 11:16:13 +01:00
2010-05-24 21:54:08 +08:00
2010-11-17 11:16:13 +01:00
2008-11-24 16:56:48 -05:00
2009-10-07 16:25:36 +02:00
2008-04-25 20:54:42 +04:00
2008-04-25 00:41:04 +04:00
2010-02-19 22:37:23 +03:00
2010-08-18 17:35:41 +08:00
2006-06-06 20:21:36 +03:00
2009-06-04 23:36:34 +05:00
2008-03-17 14:26:00 +03:00
2009-02-02 22:20:25 +01:00
2008-03-06 08:41:05 +04:00
2010-02-24 13:15:34 +04:00
2010-08-31 18:22:03 +04:00
2008-02-11 16:28:33 +04:00
2006-10-06 00:57:10 +02:00
2008-02-04 11:10:40 +04:00
2010-02-24 13:15:34 +04:00
2010-11-19 20:15:47 +03:00
2007-10-05 12:15:11 +05:00
2010-04-20 10:10:43 +01:00
2010-03-05 12:17:19 +04:00
2007-06-28 21:34:54 +04:00
2010-01-15 15:42:15 +04:00
2007-06-28 21:34:54 +04:00
2008-02-22 13:30:33 +03:00
2010-08-18 17:35:41 +08:00
2009-10-21 17:59:47 +05:00
2010-03-15 14:57:20 +01:00
2010-09-08 12:01:12 -06:00
2009-01-29 15:22:02 +01:00
2008-02-04 07:15:14 +01:00
2009-03-27 13:19:50 +08:00
2010-11-17 11:16:13 +01:00
2007-02-26 09:16:22 +01:00
2010-10-20 16:15:32 +02:00
2007-03-29 12:00:32 +02:00
2007-11-01 15:03:09 +01:00
2009-05-15 12:15:56 +02:00
2010-11-11 20:11:05 +03:00
2009-01-08 19:13:57 +01:00
2009-01-08 19:13:57 +01:00
2010-04-26 21:39:24 +02:00
2008-07-04 12:41:27 -04:00
2008-07-04 12:41:27 -04:00
2008-07-04 14:48:25 -04:00
2008-07-04 14:48:25 -04:00
2008-07-04 14:48:25 -04:00
2008-07-04 14:48:25 -04:00
2008-07-04 14:48:25 -04:00
2008-07-04 14:48:25 -04:00
2010-04-26 20:44:10 +02:00
2008-07-04 12:41:27 -04:00
2008-07-11 01:14:13 +02:00
2009-10-27 12:09:19 +04:00
2008-07-04 12:41:27 -04:00
2008-07-04 12:41:27 -04:00
2007-06-28 21:34:54 +04:00
2008-07-04 12:41:27 -04:00
2008-07-04 12:41:27 -04:00
2007-06-28 21:34:54 +04:00
2008-07-04 12:41:27 -04:00
2008-07-04 12:41:27 -04:00
2009-09-29 17:38:40 +02:00
2008-07-04 14:48:25 -04:00
2009-11-10 20:45:15 +02:00
2008-07-04 12:41:27 -04:00
2008-07-04 12:41:27 -04:00
2010-11-17 11:16:13 +01:00
2008-07-04 12:41:27 -04:00
2010-05-05 09:35:38 +02:00
2008-07-04 12:41:27 -04:00
2008-07-04 12:41:27 -04:00
2008-07-04 12:41:27 -04:00
2008-07-04 12:41:27 -04:00
2010-01-29 11:48:11 +01:00
2007-06-28 21:34:54 +04:00
2008-07-04 12:41:27 -04:00
2008-01-31 12:17:40 +01:00
2008-08-04 07:04:47 +02:00
2008-07-11 01:14:13 +02:00
2007-04-30 23:16:46 +02:00
2008-07-11 01:14:13 +02:00
2008-07-04 12:41:27 -04:00
2009-09-28 14:24:19 +08:00
2006-01-12 19:51:02 +01:00
2008-07-04 12:41:27 -04:00
2008-08-04 07:04:47 +02:00
2009-10-29 10:51:04 -06:00
2009-09-25 11:26:49 +02:00
2008-07-04 14:48:25 -04:00
2008-07-04 14:48:25 -04:00
2010-01-06 22:42:07 -07:00
2010-08-09 11:32:50 +03:00
2010-10-20 16:56:09 +02:00
2010-10-20 16:56:09 +02:00
2009-10-09 15:59:25 +02:00
2008-07-04 14:48:25 -04:00
2010-11-17 11:16:13 +01:00
2010-11-17 11:16:13 +01:00
2008-07-04 12:41:27 -04:00
2009-10-02 23:24:40 +04:00
2010-04-13 19:04:45 +04:00
2008-07-04 12:41:27 -04:00
2008-07-04 14:48:25 -04:00
2008-07-04 12:41:27 -04:00
2008-07-04 12:41:27 -04:00
2010-11-17 11:16:13 +01:00
2008-07-04 12:41:27 -04:00
2007-06-28 21:34:54 +04:00
2010-02-24 13:15:34 +04:00
2010-02-24 13:15:34 +04:00
2010-02-24 13:15:34 +04:00
2009-12-03 18:47:20 +03:00
2009-12-22 10:35:56 +01:00
2010-10-07 12:01:51 +02:00
2006-08-16 14:58:49 +02:00
2010-09-16 16:13:53 +04:00
2006-12-26 18:04:31 +04:00
2007-11-27 09:25:45 +01:00
2007-07-10 05:37:43 -06:00
2010-04-14 14:14:48 +03:00
2009-11-23 17:38:42 +01:00
2010-02-08 11:43:56 +01:00
2008-05-09 10:26:06 +02:00
2010-10-20 16:15:32 +02:00
2010-10-20 16:15:32 +02:00
2008-12-02 11:05:56 +01:00
2008-05-08 20:13:39 +02:00
2007-12-12 18:19:24 +01:00
2009-03-05 18:10:44 +08:00
2009-11-04 12:28:20 +00:00
2009-11-04 12:28:20 +00:00
2010-03-19 09:23:44 +01:00
2010-08-18 13:55:37 +02:00
2007-02-19 15:31:55 +03:00
2010-08-05 14:41:07 +02:00
2009-03-31 15:39:40 +02:00
2010-10-14 14:05:59 +04:00
2010-11-17 11:16:13 +01:00
2008-09-06 12:49:43 +08:00
2010-09-30 15:52:39 +02:00
2009-05-22 10:38:17 -04:00
2010-08-23 13:48:27 +05:00
2008-08-04 21:54:44 +02:00
2008-09-20 02:21:28 -04:00
2009-03-15 18:39:48 -04:00
2006-07-06 18:50:44 +02:00
2008-04-25 00:41:04 +04:00
2007-09-05 18:02:46 +02:00
2008-01-10 10:25:45 +01:00
2007-12-12 18:19:24 +01:00
2007-12-12 18:19:24 +01:00
2006-12-01 15:49:07 +01:00
2008-02-21 13:23:58 +01:00
2009-01-09 15:10:03 +01:00
2009-01-09 15:10:03 +01:00
2010-11-17 11:16:13 +01:00
2008-08-04 12:38:50 +02:00
2010-02-18 10:48:15 +02:00
2010-07-08 14:36:55 +02:00
2007-04-10 18:01:29 +03:00
2009-11-04 12:28:20 +00:00
2006-01-12 19:51:02 +01:00
2010-11-17 11:16:13 +01:00
2006-07-17 16:52:45 +02:00
2010-06-03 09:52:15 +02:00
2009-10-08 10:39:15 +02:00
2006-07-19 14:25:52 +02:00
2007-02-23 13:13:55 +02:00
2010-07-03 20:17:03 -03:00
2009-09-01 14:53:27 +02:00
2007-04-27 00:12:09 +04:00
2008-08-13 21:42:21 +02:00
2009-02-05 13:49:32 +04:00
2007-11-20 19:18:21 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2007-08-01 18:59:41 -06:00
2008-09-20 17:00:05 +03:00
2008-07-10 18:09:39 +02:00
2008-12-25 17:53:24 +08:00
2006-08-16 19:29:49 +02:00
2010-11-17 11:16:13 +01:00
2009-01-21 18:48:12 +03:00
2009-11-27 09:02:32 +01:00
2009-11-27 09:02:32 +01:00
2009-11-26 09:03:04 +01:00
2009-08-12 13:31:56 +08:00
2007-08-26 14:31:10 +02:00
2006-09-07 18:01:42 +02:00
2008-11-24 14:57:23 +08:00
2010-05-24 21:54:08 +08:00
2009-07-14 21:31:19 +02:00
2009-01-09 15:10:03 +01:00
2006-09-15 17:25:13 +03:00
2007-06-21 23:29:14 +02:00
2007-11-23 13:29:31 +01:00
2007-11-23 13:29:31 +01:00
2007-11-23 13:29:31 +01:00
2010-11-17 11:16:13 +01:00
2008-03-17 20:19:04 +02:00
2009-09-29 14:16:23 +03:00
2010-10-20 16:15:32 +02:00
2007-06-21 21:58:59 +02:00
2010-10-25 14:07:28 +02:00
2008-01-14 15:38:02 +08:00
2008-01-14 15:38:02 +08:00
2010-07-03 20:17:03 -03:00
2010-07-03 20:17:03 -03:00
2010-05-26 22:34:25 +08:00
2010-11-17 11:16:13 +01:00
2010-05-24 21:54:08 +08:00
2006-11-20 22:42:06 +02:00
2009-03-05 18:10:44 +08:00
2009-03-05 18:10:44 +08:00
2006-10-30 10:14:03 +04:00
2009-01-09 15:12:31 +01:00
2006-12-11 11:44:03 -05:00
2010-05-26 22:34:25 +08:00
2006-01-24 08:30:54 +01:00
2007-12-12 18:19:24 +01:00
2007-06-21 21:58:59 +02:00
2007-06-21 21:58:59 +02:00
2010-11-17 11:16:13 +01:00
2007-06-12 17:53:16 +05:00
2007-06-07 23:18:19 +02:00
2007-06-06 10:57:07 -07:00
2010-03-09 07:36:26 -03:00
2008-12-17 14:38:02 +01:00
2008-06-25 16:59:38 +02:00
2010-05-24 21:54:08 +08:00
2009-11-27 02:32:01 +03:00
2009-02-11 10:27:52 +01:00
2010-10-20 16:15:32 +02:00
2009-01-09 15:12:31 +01:00
2010-11-17 11:16:13 +01:00
2010-10-21 09:37:10 +02:00
2010-05-24 21:54:08 +08:00
2010-11-17 11:16:13 +01:00
2009-01-09 15:12:31 +01:00
2010-11-17 11:16:13 +01:00
2009-01-09 15:12:31 +01:00
2010-11-17 11:16:13 +01:00
2010-10-20 16:15:32 +02:00
2010-11-19 11:26:43 +01:00
2008-12-10 10:51:43 +00:00
2010-05-24 21:54:08 +08:00
2009-10-01 00:32:15 +01:00
2007-01-19 18:33:48 +03:00
2008-12-02 11:05:56 +01:00
2007-09-24 12:42:44 +02:00