diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-01 18:15:00 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-01 18:15:00 +0000 |
commit | a2a2e32c02643a0cec111511220227703fda1cd5 (patch) | |
tree | 69cc2b631234c2a8e026b9cd4d72676c61c594df /mysql-test/suite/federated/federated_bug_25714.result | |
parent | Releasing progress-linux version 1:10.11.8-1~progress7.99u1. (diff) | |
download | mariadb-a2a2e32c02643a0cec111511220227703fda1cd5.tar.xz mariadb-a2a2e32c02643a0cec111511220227703fda1cd5.zip |
Merging upstream version 1:11.4.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/suite/federated/federated_bug_25714.result')
-rw-r--r-- | mysql-test/suite/federated/federated_bug_25714.result | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mysql-test/suite/federated/federated_bug_25714.result b/mysql-test/suite/federated/federated_bug_25714.result index 9ac15672..8d695a86 100644 --- a/mysql-test/suite/federated/federated_bug_25714.result +++ b/mysql-test/suite/federated/federated_bug_25714.result @@ -7,10 +7,13 @@ CREATE DATABASE federated; connection master; SET @OLD_MASTER_CONCURRENT_INSERT= @@GLOBAL.CONCURRENT_INSERT; SET @@GLOBAL.CONCURRENT_INSERT= 0; +create user fed@127.0.0.1 identified by 'def'; +grant all privileges on federated.* to fed@127.0.0.1; connection slave; SET @OLD_SLAVE_CONCURRENT_INSERT= @@GLOBAL.CONCURRENT_INSERT; SET @@GLOBAL.CONCURRENT_INSERT= 0; -DROP TABLE IF EXISTS federated.bug_13118_table; +create user fed@127.0.0.1 identified by 'def'; +grant all privileges on federated.* to fed@127.0.0.1; CREATE TABLE federated.t1 ( `id` int auto_increment primary key, `value` int @@ -19,7 +22,6 @@ INSERT INTO federated.t1 SET value=1; INSERT INTO federated.t1 SET value=2; INSERT INTO federated.t1 SET value=2; connection master; -DROP TABLE IF EXISTS federated.t1; CREATE TABLE federated.t1 ( `id` int auto_increment primary key, `value` int @@ -51,9 +53,11 @@ id value 7 54 8 55 DROP TABLE federated.t1; +drop user fed@127.0.0.1; SET @@GLOBAL.CONCURRENT_INSERT= @OLD_MASTER_CONCURRENT_INSERT; connection slave; DROP TABLE federated.t1; +drop user fed@127.0.0.1; SET @@GLOBAL.CONCURRENT_INSERT= @OLD_SLAVE_CONCURRENT_INSERT; connection master; DROP TABLE IF EXISTS federated.t1; |