diff options
author | ram@gw.udmsearch.izhnet.ru <> | 2002-04-29 13:53:29 +0500 |
---|---|---|
committer | ram@gw.udmsearch.izhnet.ru <> | 2002-04-29 13:53:29 +0500 |
commit | 06ed215c37c436cf295ae7b91aa4872a50a9642c (patch) | |
tree | 77b9ea9e8c3560b6e82eaad873f24e15f519602d /mysql-test/r/heap_btree.result | |
parent | b8a12a8cecf2d277e724827ead7b93a129123362 (diff) | |
download | mariadb-git-06ed215c37c436cf295ae7b91aa4872a50a9642c.tar.gz |
Index number argument
Fix in test results
Diffstat (limited to 'mysql-test/r/heap_btree.result')
-rw-r--r-- | mysql-test/r/heap_btree.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/heap_btree.result b/mysql-test/r/heap_btree.result index 14c5f6d56f4..4e101229b0e 100644 --- a/mysql-test/r/heap_btree.result +++ b/mysql-test/r/heap_btree.result @@ -124,11 +124,11 @@ create table t1 (id int unsigned not null, primary key using BTREE (id)) type=H insert into t1 values(1); select max(id) from t1; max(id) -NULL +1 insert into t1 values(2); select max(id) from t1; max(id) -NULL +2 replace into t1 values(1); drop table t1; create table t1 (n int) type=heap; |