ndb_autodiscover2.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. -- source include/have_ndb.inc
  2. -- source include/not_embedded.inc
  3. #
  4. # Simple test to show use of discover when the server has been restarted
  5. # The previous step has simply removed the frm file
  6. # from disk, but left the table in NDB
  7. #
  8. --sleep 3
  9. select * from t9 order by a;
  10. # handler_discover should be 1
  11. show status like 'handler_discover%';
  12. drop table t9;
  13. --error 1296
  14. select * from t10;
  15. drop table t10;
  16. # End of 4.1 tests