diff options
author | Igor Babaev <igor@askmonty.org> | 2017-02-01 13:08:21 -0800 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2017-02-01 13:09:07 -0800 |
commit | 69114862f21dadb5c660847c691cc24456c90970 (patch) | |
tree | b4a6d3513fce949698b616f0278406866b6c8c4c /mysql-test/suite/binlog_encryption | |
parent | b0ea044d12981983d196bbba243f0ebb7348cc71 (diff) | |
download | mariadb-git-69114862f21dadb5c660847c691cc24456c90970.tar.gz |
Adjusted more tests after the fix for mdev-9976.
Diffstat (limited to 'mysql-test/suite/binlog_encryption')
-rw-r--r-- | mysql-test/suite/binlog_encryption/binlog_write_error.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/binlog_encryption/binlog_write_error.result b/mysql-test/suite/binlog_encryption/binlog_write_error.result index 28cffb3a8e5..2606a9f40b3 100644 --- a/mysql-test/suite/binlog_encryption/binlog_write_error.result +++ b/mysql-test/suite/binlog_encryption/binlog_write_error.result @@ -59,8 +59,8 @@ DROP VIEW v1; ERROR HY000: Error writing file 'master-bin' ((errno: #) SET GLOBAL debug_dbug=''; SET GLOBAL debug_dbug='d,injecting_fault_writing'; -CREATE PROCEDURE p1(OUT rows INT) SELECT count(*) INTO rows FROM t1; -CREATE PROCEDURE p1(OUT rows INT) SELECT count(*) INTO rows FROM t1; +CREATE PROCEDURE p1(OUT rows_cnt INT) SELECT count(*) INTO rows_cnt FROM t1; +CREATE PROCEDURE p1(OUT rows_cnt INT) SELECT count(*) INTO rows_cnt FROM t1; ERROR HY000: Error writing file 'master-bin' ((errno: #) SET GLOBAL debug_dbug=''; SET GLOBAL debug_dbug='d,injecting_fault_writing'; |