mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
3b38a854e0
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 mysql-test/r/ndb_autodiscover.result: testcase for table wo/ corresponding blob tables mysql-test/r/ndb_autodiscover2.result: testcase for table wo/ corresponding blob tables mysql-test/t/ndb_autodiscover.test: testcase for table wo/ corresponding blob tables mysql-test/t/ndb_autodiscover2.test: testcase for table wo/ corresponding blob tables ndb/include/ndbapi/NdbDictionary.hpp: Add non-const get column ndb/src/ndbapi/NdbDictionary.cpp: Add non-const get column ndb/src/ndbapi/NdbDictionaryImpl.hpp: Allow "partially" getTable, which enables dropping of tables that fails to create blob tables ndb/src/ndbapi/NdbScanOperation.cpp: Init counter when sending SCAN_TABREQ sql/ha_ndbcluster.cc: Make sure that blob don't have to big part size
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;
|
|
|