11 lines
293 B
PHP
11 lines
293 B
PHP
# Ignore information_schema.session_status deprecation warning
|
|
--disable_warnings
|
|
|
|
--disable_query_log
|
|
select @ndb_execute_count:=VARIABLE_VALUE-@ndb_init_execute_count
|
|
from information_schema.session_status
|
|
where variable_name = 'NDB_EXECUTE_COUNT';
|
|
--enable_query_log
|
|
|
|
--enable_warnings
|