mirror of
https://github.com/MariaDB/server.git
synced 2025-10-27 05:56:07 +03:00
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
7 lines
157 B
Plaintext
7 lines
157 B
Plaintext
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;
|