MariaDB [test]> explain select * from cs2;
|
+------+---------------+-------+------+---------------+------+---------+------+------+-------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+---------------+-------+------+---------------+------+---------+------+------+-------+
|
| 1 | PUSHED SELECT | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
|
+------+---------------+-------+------+---------------+------+---------+------+------+-------+
|
1 row in set (0.000 sec)
|
|
MariaDB [test]> select * from cs2;
|
Empty set (0.010 sec)
|
|
MariaDB [test]> explain select * from cs2;
|
+------+---------------+-------+------+---------------+------+---------+------+------+-------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+---------------+-------+------+---------------+------+---------+------+------+-------+
|
| 1 | PUSHED SELECT | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
|
+------+---------------+-------+------+---------------+------+---------+------+------+-------+
|
1 row in set (0.000 sec)
|
|
MariaDB [test]> explain select * from cs2;
|
+------+---------------+-------+------+---------------+------+---------+------+------+-------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
|
+------+---------------+-------+------+---------------+------+---------+------+------+-------+
|
| 1 | PUSHED SELECT | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
|
+------+---------------+-------+------+---------------+------+---------+------+------+-------+
|
1 row in set (0.000 sec)
|
|
MariaDB [test]> select * from cs2;
|
Empty set (0.010 sec)
|
|
MariaDB [test]> ANALYZE select * from cs2;
|
+------+---------------+-------+------+---------------+------+---------+------+------+--------+----------+------------+-------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra |
|
+------+---------------+-------+------+---------------+------+---------+------+------+--------+----------+------------+-------+
|
| 1 | PUSHED SELECT | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
|
+------+---------------+-------+------+---------------+------+---------+------+------+--------+----------+------------+-------+
|
1 row in set (0.005 sec)
|
|
MariaDB [test]> select * from cs2;
|
ERROR 1815 (HY000): Internal error: Unknown error
|
MariaDB [test]> ANALYZE select * from cs2;
|
+------+---------------+-------+------+---------------+------+---------+------+------+--------+----------+------------+-------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra |
|
+------+---------------+-------+------+---------------+------+---------+------+------+--------+----------+------------+-------+
|
| 1 | PUSHED SELECT | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL |
|
+------+---------------+-------+------+---------------+------+---------+------+------+--------+----------+------------+-------+
|
1 row in set (0.006 sec)
|
|
MariaDB [test]> select * from cs2;
|
ERROR 1815 (HY000): Internal error: Unknown error
|
MariaDB [test]> select * from cs2;
|
Empty set (0.008 sec)
|