diff options
author | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-10-01 13:39:49 +0200 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-10-01 13:39:49 +0200 |
commit | cfcf51b719b73c3dd5b854b14dc4829f3a5b7650 (patch) | |
tree | 091a2e59c87cb003723f6af8740cfa8647842ef4 /mysql-test/r | |
parent | 0b7c5f4dcc496a9bbae17e386552d2d36700c3e9 (diff) | |
parent | 814fbc5b6f2bf40c91bfb01dfa1bcf711af01d76 (diff) | |
download | mariadb-git-cfcf51b719b73c3dd5b854b14dc4829f3a5b7650.tar.gz |
merge
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/partition_binlog_stmt.result | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/r/partition_binlog_stmt.result b/mysql-test/r/partition_binlog_stmt.result new file mode 100644 index 00000000000..9be23636ca6 --- /dev/null +++ b/mysql-test/r/partition_binlog_stmt.result @@ -0,0 +1,13 @@ +DROP TABLE IF EXISTS t1; +# +# Bug#51851: Server with SBR locks mutex twice on LOAD DATA into +# partitioned MyISAM table +CREATE TABLE t1 +(id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, +name TINYBLOB NOT NULL, +modified TIMESTAMP DEFAULT '0000-00-00 00:00:00', +INDEX namelocs (name(255))) ENGINE = MyISAM +PARTITION BY HASH(id) PARTITIONS 2; +LOAD DATA LOCAL INFILE 'init_file.txt' +INTO TABLE t1 (name); +DROP TABLE t1; |