mirror of
https://github.com/MariaDB/server.git
synced 2025-11-12 10:22:39 +03:00
Problem 1: tests often fail in pushbuild with a timeout when waiting for the slave to start/stop/receive error. Fix 1: Updated the wait_for_slave_* macros in the following way: - The timeout is increased by a factor ten - Refactored the macros so that wait_for_slave_param does the work for the other macros. Problem 2: Tests are often incorrectly written, lacking a source include/wait_for_slave_to_[start|stop].inc. Fix 2: Improved the chance to get it right by adding include/start_slave.inc and include/stop_slave.inc, and updated tests to use these. Problem 3: The the built-in test language command wait_for_slave_to_stop is a misnomer (does not wait for the slave io thread) and does not give as much debug info in case of failure as the otherwise equivalent macro source include/wait_for_slave_sql_to_stop.inc Fix 3: Replaced all calls to the built-in command by a call to the macro. Problem 4: Some, but not all, of the wait_for_slave_* macros had an implicit connection slave. This made some tests confusing to read, and made it more difficult to use the macro in circular replication scenarios, where the connection named master needs to wait. Fix 4: Removed the implicit connection slave from all wait_for_slave_* macros, and updated tests to use an explicit connection slave where necessary. Problem 5: The macros wait_slave_status.inc and wait_show_pattern.inc were unused. Moreover, using them is difficult and error-prone. Fix 5: remove these macros. Problem 6: log_bin_trust_function_creators_basic failed when running tests because it assumed @@global.log_bin_trust_function_creators=1, and some tests modified this variable without resetting it to its original value. Fix 6: All tests that use this variable have been updated so that they reset the value at end of test.
75 lines
1.9 KiB
Plaintext
75 lines
1.9 KiB
Plaintext
drop table if exists t1;
|
|
'#--------------------FN_DYNVARS_063_01-------------------------#'
|
|
## Creating new user tt ##
|
|
CREATE user tt@localhost;
|
|
## Setting value of variable to 0 ##
|
|
SET @old_log_bin_trust_function_creators= @@global.log_bin_trust_function_creators;
|
|
SET @@global.log_bin_trust_function_creators = 0;
|
|
## Creating new table t2 ##
|
|
create table t2 (a INT);
|
|
## Creating & connecting with new connection test_con1 ##
|
|
SELECT @@log_bin_trust_function_creators;
|
|
@@log_bin_trust_function_creators
|
|
0
|
|
SELECT @@sql_log_bin;
|
|
@@sql_log_bin
|
|
1
|
|
## Creating new function f1 ##
|
|
CREATE FUNCTION f1(a INT) RETURNS INT
|
|
BEGIN
|
|
IF (a < 3) THEN
|
|
INSERT INTO t2 VALUES (a);
|
|
END IF;
|
|
RETURN 1;
|
|
END|
|
|
'Bug: Create Function should give error here because non-super user';
|
|
'is creating function here';
|
|
## Creating new table t1 ##
|
|
CREATE TABLE t1 (a INT);
|
|
## Inserting some records in t1 ##
|
|
INSERT INTO t1 VALUES (1),(2),(3);
|
|
SELECT f1(a) FROM t1;
|
|
f1(a)
|
|
1
|
|
1
|
|
1
|
|
## Dropping function f1 & table t1 ##
|
|
drop function f1;
|
|
drop table t1;
|
|
'#--------------------FN_DYNVARS_063_02-------------------------#'
|
|
## Switching to default connection ##
|
|
## Setting value of variable to 1 ##
|
|
SET @@global.log_bin_trust_function_creators = 1;
|
|
## Creating and connecting to new connection test_con2 ##
|
|
## Verifying value of variable ##
|
|
SELECT @@log_bin_trust_function_creators;
|
|
@@log_bin_trust_function_creators
|
|
1
|
|
SELECT @@sql_log_bin;
|
|
@@sql_log_bin
|
|
1
|
|
## Creating new function f1 ##
|
|
CREATE FUNCTION f1(a INT) RETURNS INT
|
|
BEGIN
|
|
IF (a < 3) THEN
|
|
INSERT INTO t2 VALUES (a);
|
|
END IF;
|
|
RETURN 1;
|
|
END|
|
|
## Creating new table t1 ##
|
|
CREATE TABLE t1 (a INT);
|
|
## Inserting values in table t1 ##
|
|
INSERT INTO t1 VALUES (1),(2),(3);
|
|
SELECT f1(a) FROM t1;
|
|
f1(a)
|
|
1
|
|
1
|
|
1
|
|
## Dropping function f1 ##
|
|
drop function f1;
|
|
## Dropping table t1 & t2 ##
|
|
drop table t1,t2;
|
|
## Disconnecting both the connections ##
|
|
DROP USER tt@localhost;
|
|
SET @@global.log_bin_trust_function_creators= @old_log_bin_trust_function_creators;
|