blob: 3ce9641d87c28fc863bcfb3e5930402aef04c24a (
plain)
1
2
3
4
5
6
7
8
9
|
#
# Whether server supports dynamic loading.
#
if (`SELECT @@have_dynamic_loading != 'YES'`) {
--skip The test requires dynamic loading
}
disable_query_log;
show variables like 'have_dynamic_loading';
enable_query_log;
|