mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
bb66c80aeb
added support for quiet increased line buffer size client/mysqltest.c fixed memory leak added query logging to result file added error message logging to result file added enable_query_log/disable_query_log mysql-test/mysql-test-run.sh converted tests to use mysqlmanager Updated test results
6 lines
157 B
Text
6 lines
157 B
Text
drop table if exists t1;
|
|
create table t1(n int not null, key(n)) delay_key_write = 1;
|
|
select count(distinct n) from t1;
|
|
count(distinct n)
|
|
100
|
|
drop table t1;
|