1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Index number argument

Fix in test results
This commit is contained in:
ram@gw.udmsearch.izhnet.ru
2002-04-29 13:53:29 +05:00
parent b8a12a8cec
commit 06ed215c37
6 changed files with 13 additions and 16 deletions

View File

@ -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;