blob: f8733aa7876a3f3fda10dc67f5bdeb5cc35c7b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# ==== Purpose ====
#
# Ensure that the server is running with binlogging on
#
# ==== Usage ====
#
# source include/have_log_bin.inc;
source include/not_embedded.inc;
-- source include/no_view_protocol.inc
if (`select not @@log_bin`) {
skip Test requires: 'have_log_bin';
}
|