mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
5343d4c969
Added bug fix from 3.23 for AIX 4.3.3 and gcc 3.x Small change in EXCHANGE output Propagate open-files-limit from mysqld_safe -> mysqld Fixed speed bug in GROUP BY Added quotes around database name in CREATE DATABASE db_name (for binary log)
14 lines
443 B
Text
14 lines
443 B
Text
drop table if exists t1;
|
|
CREATE TABLE t1 (id CHAR(12) not null, PRIMARY KEY (id));
|
|
insert into t1 values ('000000000001'),('000000000002');
|
|
explain select * from t1 where id=000000000001;
|
|
table type possible_keys key key_len ref rows Extra
|
|
t1 index PRIMARY PRIMARY 12 NULL 2 Using where; Using index
|
|
select * from t1 where id=000000000001;
|
|
id
|
|
000000000001
|
|
delete from t1 where id=000000000002;
|
|
select * from t1;
|
|
id
|
|
000000000001
|
|
drop table t1;
|