Details
-
Type:
Bug
-
Status: Open (View Workflow)
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 10.5, 10.6, 10.7, 10.8, 10.9, 10.10
-
Component/s: Storage Engine - S3
-
Labels:None
Description
Run with S3 options.
DROP TABLE IF EXISTS t; |
CREATE TABLE t (a INT, b INT, KEY(a), KEY(b)) ENGINE=Aria; |
INSERT INTO t VALUES (0,0),(0,10),(3,10); |
ALTER TABLE t ENGINE=S3; |
SELECT * FROM t WHERE a = 99 OR b = 2; |
DROP TABLE t; |
10.5 8494758e |
mysqltest: At line 5: query 'SELECT * FROM t WHERE a = 99 OR b = 2' failed: 1041: Out of memory. |
error log |
2022-07-23 1:11:09 4 [ERROR] Got error 128 when reading table './test/t'
|
Reproducible on 10.5+, with MinIO and AWS alike.