mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
8609254f4f
prefer if/skip over require (works better with debugging, not affected by query log)
13 lines
240 B
PHP
13 lines
240 B
PHP
# ==== Purpose ====
|
|
#
|
|
# Ensure that the server is running with binlogging on
|
|
#
|
|
# ==== Usage ====
|
|
#
|
|
# source include/have_log_bin.inc;
|
|
|
|
source include/not_embedded.inc;
|
|
|
|
if (`select not @@log_bin`) {
|
|
skip Test requires: 'have_log_bin';
|
|
}
|