我尝试加载到内存中的表大小为26MB。要将其加载到内存中,请执行以下操作:
SET max_heap_table_size = 1024*1024*50;
CREATE TABLE vendor_test
ENGINE=MEMORY SELECT * from test_table.t_vendors ORDER BY `ID_VENDOR`;
输出为:ERROR 1114 (HY000): The table 'vendor_test' is full
。
我尝试在CREATE语句之前将max_heap_table_size
参数增加到300MB。有什么想法吗?