Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.0.10
-
None
Description
After the latest merge with 10.0-connect the following stopped working:
CREATE TABLE t1 (c INT PRIMARY KEY) ENGINE=CONNECT TABLE_TYPE=CSV; |
INSERT t1 VALUES (1),(2); |
SELECT MAX(c) FROM t1; |
This happens because index_flags() now have HA_READ_ORDER, but index_last() is still not implemented.