mirror of
https://github.com/MariaDB/server.git
synced 2025-05-04 06:05:05 +03:00
17 lines
328 B
Plaintext
17 lines
328 B
Plaintext
-- source include/have_ndb.inc
|
|
|
|
#
|
|
# Simple test to show use of discover when the server has been restarted
|
|
# The previous step has simply removed the frm file
|
|
# from disk, but left the table in NDB
|
|
#
|
|
--sleep 3;
|
|
select * from t9 order by a;
|
|
|
|
# handler_discover should be 1
|
|
show status like 'handler_discover%';
|
|
|
|
drop table t9;
|
|
|
|
|