diff options
author | unknown <mikael@dator5.(none)> | 2006-06-20 15:13:44 -0400 |
---|---|---|
committer | unknown <mikael@dator5.(none)> | 2006-06-20 15:13:44 -0400 |
commit | 5efea6a0a07b98e30fcd93ae11d7c3d93dfeaa03 (patch) | |
tree | 466a850c17d713549e1d1a16c02210bcdeb026fd /mysql-test/r | |
parent | 89fc7fdb056fc8aa5ffb5da229b460e9863f0641 (diff) | |
parent | ae90c20278270d75bc43be0817d173916e44095b (diff) | |
download | mariadb-git-5efea6a0a07b98e30fcd93ae11d7c3d93dfeaa03.tar.gz |
Merge dator5.(none):/home/pappa/clean-mysql-5.1
into dator5.(none):/home/pappa/bug19309
sql/sql_table.cc:
Auto merged
mysql-test/r/partition.result:
manual merge
mysql-test/t/partition.test:
manual merge
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/partition.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index fa1baaec07e..63abaf6eda4 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -1,4 +1,11 @@ drop table if exists t1; +create table t1 (a int) +partition by list (a) +(partition p0 values in (1)); +create procedure pz() +alter table t1 engine = myisam; +call pz(); +call pz(); create table t1 (a bigint) partition by range (a) (partition p0 values less than (0xFFFFFFFFFFFFFFFF), |