mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
8acbd6a2ba
1) fix so that missing blob tables don't prevent table from being dropped 2) decrease size of blob part if record length exceeds max length 3) add test case for table wo/ corresponding blob table 4) init scan counters when sending scan_tabreq
19 lines
376 B
Text
19 lines
376 B
Text
-- 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;
|
|
|
|
--error 1296
|
|
select * from t10;
|
|
drop table t10;
|
|
|