mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
305dc01078
into neptunus.(none):/home/msvensson/mysql/bug11316/my50-bug11316
21 lines
429 B
Text
21 lines
429 B
Text
-- source include/have_ndb.inc
|
|
-- source include/not_embedded.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;
|
|
|
|
--error 1296
|
|
select * from t10;
|
|
drop table t10;
|
|
|
|
# End of 4.1 tests
|