mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
results fixed
This commit is contained in:
parent
6e50ee2a99
commit
7b111efc23
4 changed files with 17 additions and 17 deletions
|
|
@ -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(*)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue