mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
send a separate commit message to internals
added a test for check table BitKeeper/triggers/post-commit: send a separate commit message to internals BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
This commit is contained in:
2
mysql-test/r/check.result
Normal file
2
mysql-test/r/check.result
Normal file
@ -0,0 +1,2 @@
|
||||
Table Op Msg_type Msg_text
|
||||
test.t1 check status OK
|
18
mysql-test/t/check.test
Normal file
18
mysql-test/t/check.test
Normal file
@ -0,0 +1,18 @@
|
||||
connect (con1,localhost,root,,);
|
||||
connect (con2,localhost,root,,);
|
||||
connection con1;
|
||||
drop table if exists t1;
|
||||
#add a lot of keys to slow down check
|
||||
create table t1(n int not null, key(n), key(n), key(n), key(n));
|
||||
let $1=10000;
|
||||
while ($1)
|
||||
{
|
||||
eval insert into t1 values ($1);
|
||||
dec $1;
|
||||
}
|
||||
send check table t1 type=extended;
|
||||
connection con2;
|
||||
insert into t1 values (200000);
|
||||
connection con1;
|
||||
reap;
|
||||
|
Reference in New Issue
Block a user