diff options
author | mikael@dator5.(none) <> | 2006-07-01 00:22:25 -0400 |
---|---|---|
committer | mikael@dator5.(none) <> | 2006-07-01 00:22:25 -0400 |
commit | 9e56572e5cd962f351cc28acf508f70ac0cfb4a9 (patch) | |
tree | 37a7f5facce4101fbc4ed0028dca1ea38e8c5886 /mysql-test/r/partition.result | |
parent | b6559681233125ad75beeca14d849d6afd9115ab (diff) | |
parent | 446af393375dee2ba15b3c9908bdb087de5721fd (diff) | |
download | mariadb-git-9e56572e5cd962f351cc28acf508f70ac0cfb4a9.tar.gz |
Merge dator5.(none):/home/pappa/clean-mysql-5.1
into dator5.(none):/home/pappa/bug20583
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r-- | mysql-test/r/partition.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index 47ee2be6f51..95f55a25166 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -1057,4 +1057,12 @@ alter table t1 add partition (partition p2 values in (3)); alter table t1 drop partition p2; use test; drop database db99; +create table t1 (a int, index(a)) +partition by hash(a); +insert into t1 values (1),(2); +select * from t1 ORDER BY a DESC; +a +2 +1 +drop table t1; End of 5.1 tests |