diff options
Diffstat (limited to 'storage/rocksdb/mysql-test/rocksdb/r/issue495.result')
-rw-r--r-- | storage/rocksdb/mysql-test/rocksdb/r/issue495.result | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/storage/rocksdb/mysql-test/rocksdb/r/issue495.result b/storage/rocksdb/mysql-test/rocksdb/r/issue495.result new file mode 100644 index 00000000..c7ac34c6 --- /dev/null +++ b/storage/rocksdb/mysql-test/rocksdb/r/issue495.result @@ -0,0 +1,30 @@ +drop table if exists t; +create table t ( +a int, +b int, +c varchar(12249) collate latin1_bin, +d datetime, +e int, +f int, +g blob, +h int, +i int, +key (b,e), +key (h,b) +) engine=rocksdb +partition by linear hash (i) partitions 8 ; +insert into t values (1,1,'a',now(),1,1,'a',1,1); +insert into t values (1,1,'a',now(),1,1,'a',1,1); +insert into t values (1,1,'a',now(),1,1,'a',1,1); +insert into t values (1,1,'a',now(),1,1,'a',1,1); +insert into t values (1,1,'a',now(),1,1,'a',1,1); +insert into t values (1,1,'a',now(),1,1,'a',1,1); +insert into t values (1,1,'a',now(),1,1,'a',1,1); +insert into t values (1,1,'a',now(),1,1,'a',1,1); +select i from t group by h; +i +1 +select i from t group by h; +i +1 +drop table t; |