summaryrefslogtreecommitdiff
path: root/mysql-test/suite/heap/heap_btree.result
diff options
context:
space:
mode:
authorVarun Gupta <varun.gupta@mariadb.com>2021-02-26 10:31:24 +0530
committerVarun Gupta <varun.gupta@mariadb.com>2021-02-26 15:10:16 +0530
commit8e5a0962e3cedf5283e624f616111d4fe5975adc (patch)
tree8d86cede646e23bff285354955a5cd83e57c65d7 /mysql-test/suite/heap/heap_btree.result
parent7d2a47880c0e349a2a6db6b1ab39afbb5d6a0f9b (diff)
downloadmariadb-git-10.6-mdev7317.tar.gz
Updating test results10.6-mdev7317
Diffstat (limited to 'mysql-test/suite/heap/heap_btree.result')
-rw-r--r--mysql-test/suite/heap/heap_btree.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/heap/heap_btree.result b/mysql-test/suite/heap/heap_btree.result
index 5778ff0dd55..526c76a52e8 100644
--- a/mysql-test/suite/heap/heap_btree.result
+++ b/mysql-test/suite/heap/heap_btree.result
@@ -3,8 +3,8 @@ create table t1 (a int not null,b int not null, primary key using BTREE (a)) eng
insert into t1 values(1,1),(2,2),(3,3),(4,4);
delete from t1 where a=1 or a=0;
show keys from t1;
-Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment Index_comment
-t1 0 PRIMARY 1 a A NULL NULL NULL BTREE
+Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment Index_comment Ignored
+t1 0 PRIMARY 1 a A NULL NULL NULL BTREE NO
select * from t1;
a b
2 2