blob: a8ffac1109e50f687ef4c1cea509600feb751c1c (
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.par' (errno: 2 "No such file or directory")
|