blob: 98600d98ce305715c72b3e67ee32aa4f2e130f30 (
plain)
1
2
3
4
5
6
7
8
|
select * from t1 partition (p1);
x
300
select * from t1 partition (p0);
ERROR HY000: Can't find file: './test/t1.MYI' (errno: 2 "No such file or directory")
drop table t1;
Warnings:
Warning 1017 Can't find file: './test/t1.MYI' (errno: 2 "No such file or directory")
|