mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
Fix faulty select to check for existence of blackhole support
This commit is contained in:
parent
f9fc83c290
commit
83ea6d49c5
1 changed files with 3 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
|||
if (`select (support = 'YES' or support = 'DEFAULT')=0 from information_schema.engines where engine = 'blackhole'`){
|
||||
if (!`SELECT count(*) FROM information_schema.engines WHERE
|
||||
(support = 'YES' OR support = 'DEFAULT') AND
|
||||
engine = 'blackhole'`){
|
||||
skip Need blackhole engine;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue