2009-06-27 15:18:47 +02:00
|
|
|
# BUG#42851: Spurious "Statement is not safe to log in statement
|
|
|
|
# format." warnings
|
|
|
|
#
|
|
|
|
# WHY
|
|
|
|
# ===
|
|
|
|
#
|
|
|
|
# This test aims at checking that the fix that removes spurious
|
|
|
|
# entries in the error log when the statement is filtered out from
|
|
|
|
# binlog, is working.
|
|
|
|
#
|
|
|
|
# HOW
|
|
|
|
# ===
|
|
|
|
#
|
|
|
|
# The test case is split into three assertions when issuing statements
|
|
|
|
# containing LIMIT and ORDER BY:
|
|
|
|
#
|
|
|
|
# i) issue statements in database that is not filtered => check
|
|
|
|
# that warnings ARE shown;
|
|
|
|
#
|
|
|
|
# ii) issue statements in database that is not filtered, but with
|
|
|
|
# binlog disabled => check that warnings ARE NOT shown;
|
|
|
|
#
|
|
|
|
# iii) issue statements in database that is filtered => check that
|
|
|
|
# warnings ARE NOT shown.
|
|
|
|
|
|
|
|
-- source include/have_log_bin.inc
|
|
|
|
-- source include/have_binlog_format_statement.inc
|
|
|
|
|
|
|
|
-- echo ### NOT filtered database => assertion: warnings ARE shown
|
|
|
|
|
|
|
|
-- disable_warnings
|
|
|
|
DROP TABLE IF EXISTS t1;
|
|
|
|
-- enable_warnings
|
|
|
|
|
|
|
|
CREATE TABLE t1 (a int, b int, primary key (a));
|
|
|
|
INSERT INTO t1 VALUES (1,2), (2,3);
|
|
|
|
UPDATE t1 SET b='4' WHERE a=1 LIMIT 1;
|
|
|
|
UPDATE t1 SET b='5' WHERE a=2 ORDER BY a LIMIT 1;
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
|
|
|
-- echo ### NOT filtered database => assertion: binlog disabled and warnings ARE NOT shown
|
|
|
|
|
|
|
|
SET SQL_LOG_BIN= 0;
|
|
|
|
|
|
|
|
-- disable_warnings
|
|
|
|
DROP TABLE IF EXISTS t1;
|
|
|
|
-- enable_warnings
|
|
|
|
|
|
|
|
CREATE TABLE t1 (a int, b int, primary key (a));
|
|
|
|
INSERT INTO t1 VALUES (1,2), (2,3);
|
|
|
|
UPDATE t1 SET b='4' WHERE a=1 LIMIT 1;
|
|
|
|
UPDATE t1 SET b='5' WHERE a=2 ORDER BY a LIMIT 1;
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
|
|
|
SET SQL_LOG_BIN= 1;
|
|
|
|
|
|
|
|
-- echo ### FILTERED database => assertion: warnings ARE NOT shown
|
|
|
|
|
2009-07-31 15:00:35 +02:00
|
|
|
let $old_db= `SELECT DATABASE()`;
|
|
|
|
|
2009-06-27 15:18:47 +02:00
|
|
|
CREATE DATABASE b42851;
|
|
|
|
USE b42851;
|
|
|
|
|
|
|
|
-- disable_warnings
|
|
|
|
DROP TABLE IF EXISTS t1;
|
|
|
|
-- enable_warnings
|
|
|
|
|
|
|
|
CREATE TABLE t1 (a int, b int, primary key (a));
|
|
|
|
INSERT INTO t1 VALUES (1,2), (2,3);
|
|
|
|
UPDATE t1 SET b='4' WHERE a=1 LIMIT 1;
|
|
|
|
UPDATE t1 SET b='5' WHERE a=2 ORDER BY a LIMIT 1;
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
|
|
|
# clean up
|
|
|
|
DROP DATABASE b42851;
|
2009-07-31 15:00:35 +02:00
|
|
|
|
|
|
|
eval USE $old_db;
|
|
|
|
|
|
|
|
--echo #
|
|
|
|
--echo # Bug#46265: Can not disable warning about unsafe statements for binary logging
|
|
|
|
--echo #
|
|
|
|
|
|
|
|
SET @old_log_warnings = @@log_warnings;
|
|
|
|
|
|
|
|
--disable_warnings
|
|
|
|
DROP TABLE IF EXISTS t1;
|
|
|
|
--enable_warnings
|
|
|
|
CREATE TABLE t1 (a VARCHAR(36), b VARCHAR(10));
|
|
|
|
SET GLOBAL LOG_WARNINGS = 0;
|
|
|
|
INSERT INTO t1 VALUES(UUID(), 'Bug#46265');
|
|
|
|
SET GLOBAL LOG_WARNINGS = 1;
|
|
|
|
INSERT INTO t1 VALUES(UUID(), 'Bug#46265');
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
|
|
|
SET GLOBAL log_warnings = @old_log_warnings;
|
|
|
|
|
2009-10-08 14:00:43 +02:00
|
|
|
let $log_error_= `SELECT @@GLOBAL.log_error`;
|
|
|
|
if(!`select LENGTH('$log_error_')`)
|
2009-10-08 13:25:11 +02:00
|
|
|
{
|
|
|
|
# MySQL Server on windows is started with --console and thus
|
|
|
|
# does not know the location of its .err log, use default location
|
2009-10-08 14:00:43 +02:00
|
|
|
let $log_error_ = $MYSQLTEST_VARDIR/log/mysqld.1.err;
|
2009-10-08 13:25:11 +02:00
|
|
|
}
|
|
|
|
# Assign env variable LOG_ERROR
|
2009-10-08 14:00:43 +02:00
|
|
|
let LOG_ERROR=$log_error_;
|
2009-07-31 15:00:35 +02:00
|
|
|
|
|
|
|
--echo # Count the number of times the "Unsafe" message was printed
|
|
|
|
--echo # to the error log.
|
|
|
|
|
|
|
|
perl;
|
2009-10-08 13:25:11 +02:00
|
|
|
use strict;
|
2009-10-08 14:00:43 +02:00
|
|
|
my $log_error= $ENV{'LOG_ERROR'} or die "LOG_ERROR not set";
|
2009-07-31 15:00:35 +02:00
|
|
|
open(FILE, "$log_error") or die("Unable to open $log_error: $!\n");
|
2009-10-08 13:25:11 +02:00
|
|
|
my $count = () = grep(/Bug#46265/g,<FILE>);
|
2009-07-31 15:00:35 +02:00
|
|
|
print "Occurrences: $count\n";
|
|
|
|
close(FILE);
|
|
|
|
EOF
|
2010-05-13 13:00:53 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Check how RAND() can be used with replication
|
|
|
|
#
|
|
|
|
|
|
|
|
create table t1 (n1 int, n2 int, n3 int,
|
|
|
|
key (n1, n2, n3),
|
|
|
|
key (n2, n3, n1),
|
|
|
|
key (n3, n1, n2));
|
|
|
|
insert into t1 values (1,1,1);
|
|
|
|
# This should work fine
|
|
|
|
insert into t1 values (RAND()*1000+10, RAND()*1000+10, RAND()*1000+10);
|
|
|
|
# This should need row based logging.
|
|
|
|
update t1 set n1=rand() where n1=1;
|
|
|
|
delete from t1 where n2=1 + rand()*0;
|
|
|
|
drop table t1;
|