1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-21 21:22:27 +03:00
Files
mariadb/mysql-test/suite/sys_vars/t/sysvars_debug.test
Marko Mäkelä 3c92050d1c Fix build without either ENABLED_DEBUG_SYNC or DBUG_OFF
There are separate flags DBUG_OFF for disabling the DBUG facility
and ENABLED_DEBUG_SYNC for enabling the DEBUG_SYNC facility.
Let us allow debug builds without DEBUG_SYNC.

Note: For CMAKE_BUILD_TYPE=Debug, CMakeLists.txt will continue to
define ENABLED_DEBUG_SYNC.
2022-09-23 17:37:52 +03:00

9 lines
232 B
Plaintext

--source include/have_debug.inc
--source include/have_debug_sync.inc
--source include/word_size.inc
--vertical_results
select * from information_schema.system_variables
where variable_name like 'debug%'
order by variable_name;