MySQLOnRocksDB/mysql-5.6
forked from facebook/mysql-5.6

Loading…
Support index-only scans for DATETIME, TIMESTAMP, and DOUBLE #26
Closed
spetrunia opened this Issue
· 2 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, index scans for DATETIME, TIMESTAMP, and DOUBLE are not supported
Testcase:
This task is about to support them.
DATETIME/TIMESTAMP use Field_temporal_with_date_and_timef::make_sort_key, which just does memcpy().
DOUBLE uses change_double_for_sort(), we will need to code a reverse function.