diff options
author | Sergei Golubchik <serg@mariadb.org> | 2021-09-09 13:07:36 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2021-09-09 13:07:36 +0200 |
commit | b145fba0a81e65e4c8a52c9202e859889eb46317 (patch) | |
tree | 0f0ee7fef4aff6a8fa90131025d0e643a00cc3a5 | |
parent | de7e027d5e5a67d207927c4643b744ec2da25aac (diff) | |
download | mariadb-git-b145fba0a81e65e4c8a52c9202e859889eb46317.tar.gz |
post-merge fix
-rw-r--r-- | mysql-test/suite/galera/r/galera_fk_multibyte.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/galera/r/galera_fk_multibyte.result b/mysql-test/suite/galera/r/galera_fk_multibyte.result index dfb3b86ff38..f035d324394 100644 --- a/mysql-test/suite/galera/r/galera_fk_multibyte.result +++ b/mysql-test/suite/galera/r/galera_fk_multibyte.result @@ -1,3 +1,5 @@ +connection node_2; +connection node_1; create table p (i varchar(100) primary key, j int) ENGINE=InnoDB DEFAULT CHARSET=utf8; create table c1 (i int primary key auto_increment, j varchar(100), k int, key(j), constraint fk1 foreign key (j) references p(i)) ENGINE=InnoDB DEFAULT CHARSET=utf8; create table c2 (i int primary key auto_increment, j varchar(100), k int, key(j), constraint fk2 foreign key (j) references p(i)) ENGINE=InnoDB DEFAULT CHARSET=utf8; |