blob: 2aae2508a2bfac8781e50e8e054f64c0f3171ea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- source include/have_ndb.inc
#
# Simple test to show use of discover on startup
# The previous step has simply removed the frm file
# from disk, but left the table in NDB
#
select * from t9;
# handler_discover should be zero
show status like 'handler_discover%';
drop table t9;
|