mirror of
https://github.com/MariaDB/server.git
synced 2025-11-24 06:01:25 +03:00
Additional changes to test: "flush tables" so that Windows releases the files. mysql-test/r/mysqlcheck.result: Add "flush tables" to get windows to release the files, so that we can test truncation properly. mysql-test/t/mysqlcheck.test: Add "flush tables" to get windows to release the files, so that we can test truncation properly.
80 lines
2.7 KiB
Plaintext
80 lines
2.7 KiB
Plaintext
DROP TABLE IF EXISTS t1;
|
|
drop view if exists v1;
|
|
drop database if exists client_test_db;
|
|
mysql.columns_priv OK
|
|
mysql.db OK
|
|
mysql.func OK
|
|
mysql.help_category OK
|
|
mysql.help_keyword OK
|
|
mysql.help_relation OK
|
|
mysql.help_topic OK
|
|
mysql.host OK
|
|
mysql.proc OK
|
|
mysql.procs_priv OK
|
|
mysql.tables_priv OK
|
|
mysql.time_zone OK
|
|
mysql.time_zone_leap_second OK
|
|
mysql.time_zone_name OK
|
|
mysql.time_zone_transition OK
|
|
mysql.time_zone_transition_type OK
|
|
mysql.user OK
|
|
mysql.columns_priv OK
|
|
mysql.db OK
|
|
mysql.func OK
|
|
mysql.help_category OK
|
|
mysql.help_keyword OK
|
|
mysql.help_relation OK
|
|
mysql.help_topic OK
|
|
mysql.host OK
|
|
mysql.proc OK
|
|
mysql.procs_priv OK
|
|
mysql.tables_priv OK
|
|
mysql.time_zone OK
|
|
mysql.time_zone_leap_second OK
|
|
mysql.time_zone_name OK
|
|
mysql.time_zone_transition OK
|
|
mysql.time_zone_transition_type OK
|
|
mysql.user OK
|
|
create table t1 (a int);
|
|
create view v1 as select * from t1;
|
|
test.t1 OK
|
|
test.t1 OK
|
|
drop view v1;
|
|
drop table t1;
|
|
create database d_bug25347;
|
|
use d_bug25347;
|
|
create table t_bug25347 (a int);
|
|
create view v_bug25347 as select * from t_bug25347;
|
|
insert into t_bug25347 values (1),(2),(3);
|
|
flush tables;
|
|
removing and creating
|
|
d_bug25347.t_bug25347
|
|
error : Incorrect file format 't_bug25347'
|
|
insert into t_bug25347 values (4),(5),(6);
|
|
ERROR HY000: Incorrect file format 't_bug25347'
|
|
d_bug25347.t_bug25347
|
|
warning : Number of rows changed from 0 to 3
|
|
status : OK
|
|
insert into t_bug25347 values (7),(8),(9);
|
|
select * from t_bug25347;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
7
|
|
8
|
|
9
|
|
select * from v_bug25347;
|
|
a
|
|
1
|
|
2
|
|
3
|
|
7
|
|
8
|
|
9
|
|
drop view v_bug25347;
|
|
drop table t_bug25347;
|
|
drop database d_bug25347;
|
|
use test;
|
|
End of 5.0 tests
|