diff options
author | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-10-01 15:41:27 +0200 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-10-01 15:41:27 +0200 |
commit | 3c555b6c181658790d0a97eee87cdc709fdebdb5 (patch) | |
tree | 91ed8935bf5180a8f4b2265358d09344711d7869 /mysql-test/r/partition.result | |
parent | cfcf51b719b73c3dd5b854b14dc4829f3a5b7650 (diff) | |
parent | c485854945cf73ad96594eea838fdd4286c53b33 (diff) | |
download | mariadb-git-3c555b6c181658790d0a97eee87cdc709fdebdb5.tar.gz |
merge
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r-- | mysql-test/r/partition.result | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index 2727b4f4c8a..8e65557d690 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -1,5 +1,20 @@ drop table if exists t1, t2; # +# Bug#57113: ha_partition::extra(ha_extra_function): +# Assertion `m_extra_cache' failed +CREATE TABLE t1 +(id INT NOT NULL PRIMARY KEY, +name VARCHAR(16) NOT NULL, +year YEAR, +INDEX name (name(8)) +) +PARTITION BY HASH(id) PARTITIONS 2; +INSERT INTO t1 VALUES ( 1, 'FooBar', '1924' ); +CREATE TABLE t2 (id INT); +INSERT INTO t2 VALUES (1),(2); +UPDATE t1, t2 SET t1.year = '1955' WHERE t1.name = 'FooBar'; +DROP TABLE t1, t2; +# # Bug#55458: Partitioned MyISAM table gets crashed by multi-table update # CREATE TABLE t1 ( |