summaryrefslogtreecommitdiff
path: root/mysql-test/r/heap.result
diff options
context:
space:
mode:
authorserg@sergbook.mysql.com <>2006-05-09 11:14:31 -0400
committerserg@sergbook.mysql.com <>2006-05-09 11:14:31 -0400
commitc4f3410449a3220134dbf9694e0997e7158bf037 (patch)
tree395ae242d7252ad064d17846bf4e8732a342a268 /mysql-test/r/heap.result
parent994ab2dceaee7fd38729476eddd5429083ed091e (diff)
downloadmariadb-git-c4f3410449a3220134dbf9694e0997e7158bf037.tar.gz
results fixed
Diffstat (limited to 'mysql-test/r/heap.result')
-rw-r--r--mysql-test/r/heap.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/heap.result b/mysql-test/r/heap.result
index 5a2d07db5e6..2c0e8123667 100644
--- a/mysql-test/r/heap.result
+++ b/mysql-test/r/heap.result
@@ -556,9 +556,9 @@ t1 CREATE TABLE `t1` (
`v` varchar(10) DEFAULT NULL,
`c` char(10) DEFAULT NULL,
`t` varchar(50) DEFAULT NULL,
- KEY `v` USING BTREE (`v`),
- KEY `c` USING BTREE (`c`),
- KEY `t` USING BTREE (`t`(10))
+ KEY `v` (`v`) USING BTREE,
+ KEY `c` (`c`) USING BTREE,
+ KEY `t` (`t`(10)) USING BTREE
) ENGINE=MEMORY DEFAULT CHARSET=latin1
select count(*) from t1;
count(*)