Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 10.0.10
-
Fix Version/s: 10.0.11
-
Component/s: None
-
Labels:
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.