1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Bug#24997 warnings test case failure

- Move the specific test case to a separate file that is run only
   if we have a disabled handler.
This commit is contained in:
msvensson@neptunus.(none)
2006-12-15 15:05:50 +01:00
parent e25b1344cd
commit a246eb39bb
5 changed files with 27 additions and 13 deletions

View File

@@ -0,0 +1,19 @@
#
# Only run this test with a compiled in but disabled
# engine
#
disable_query_log;
--require r/true.require
select support = 'Disabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster';
enable_query_log;
#
# Test for handler type, will select MyISAM and print a warning
# about that - since NDB is disabled
#
create table t1 (id int) engine=NDB;
alter table t1 engine=NDB;
drop table t1;