2007-10-30 09:51:57 +01:00
|
|
|
DROP TABLE IF EXISTS t1, `t``1`, `t 1`;
|
2006-12-14 23:51:37 +01:00
|
|
|
drop view if exists v1;
|
2006-06-05 05:16:08 +02:00
|
|
|
drop database if exists client_test_db;
|
2008-10-13 20:33:08 +02:00
|
|
|
mtr.global_suppressions OK
|
|
|
|
mtr.test_suppressions OK
|
2005-10-18 11:25:03 +02:00
|
|
|
mysql.columns_priv OK
|
|
|
|
mysql.db OK
|
2006-01-11 12:49:56 +01:00
|
|
|
mysql.event OK
|
2005-10-18 11:25:03 +02:00
|
|
|
mysql.func OK
|
2006-01-19 03:56:06 +01:00
|
|
|
mysql.general_log
|
|
|
|
note : The storage engine for the table doesn't support optimize
|
2005-10-18 11:25:03 +02:00
|
|
|
mysql.help_category OK
|
|
|
|
mysql.help_keyword OK
|
|
|
|
mysql.help_relation OK
|
|
|
|
mysql.help_topic OK
|
|
|
|
mysql.host OK
|
2006-12-01 15:49:07 +01:00
|
|
|
mysql.ndb_binlog_index OK
|
2005-11-06 13:13:06 +01:00
|
|
|
mysql.plugin OK
|
2005-10-18 11:25:03 +02:00
|
|
|
mysql.proc OK
|
|
|
|
mysql.procs_priv OK
|
2006-12-09 04:19:51 +01:00
|
|
|
mysql.servers OK
|
2006-01-19 03:56:06 +01:00
|
|
|
mysql.slow_log
|
|
|
|
note : The storage engine for the table doesn't support optimize
|
2005-10-18 11:25:03 +02:00
|
|
|
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
|
2006-01-11 12:49:56 +01:00
|
|
|
mysql.event OK
|
2005-10-18 11:25:03 +02:00
|
|
|
mysql.func OK
|
2006-01-19 03:56:06 +01:00
|
|
|
mysql.general_log
|
|
|
|
note : The storage engine for the table doesn't support optimize
|
2005-10-18 11:25:03 +02:00
|
|
|
mysql.help_category OK
|
|
|
|
mysql.help_keyword OK
|
|
|
|
mysql.help_relation OK
|
|
|
|
mysql.help_topic OK
|
|
|
|
mysql.host OK
|
2006-12-01 15:49:07 +01:00
|
|
|
mysql.ndb_binlog_index OK
|
2005-11-06 13:13:06 +01:00
|
|
|
mysql.plugin OK
|
2005-10-18 11:25:03 +02:00
|
|
|
mysql.proc OK
|
|
|
|
mysql.procs_priv OK
|
2006-12-09 04:19:51 +01:00
|
|
|
mysql.servers OK
|
2006-01-19 03:56:06 +01:00
|
|
|
mysql.slow_log
|
|
|
|
note : The storage engine for the table doesn't support optimize
|
2005-10-18 11:25:03 +02:00
|
|
|
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
|
2006-07-24 22:31:20 +02:00
|
|
|
create table t1 (a int);
|
|
|
|
create view v1 as select * from t1;
|
|
|
|
test.t1 OK
|
|
|
|
test.t1 OK
|
|
|
|
drop view v1;
|
|
|
|
drop table t1;
|
2007-10-30 09:51:57 +01:00
|
|
|
create table `t``1`(a int);
|
|
|
|
create table `t 1`(a int);
|
|
|
|
test.t 1 OK
|
|
|
|
test.t`1 OK
|
|
|
|
drop table `t``1`, `t 1`;
|
2007-04-04 00:12:31 +02:00
|
|
|
create database d_bug25347;
|
|
|
|
use d_bug25347;
|
|
|
|
create table t_bug25347 (a int);
|
|
|
|
create view v_bug25347 as select * from t_bug25347;
|
2007-04-16 21:00:16 +02:00
|
|
|
insert into t_bug25347 values (1),(2),(3);
|
|
|
|
flush tables;
|
2007-04-04 00:12:31 +02:00
|
|
|
removing and creating
|
2007-04-16 21:00:16 +02:00
|
|
|
d_bug25347.t_bug25347
|
2007-12-17 14:51:29 +01:00
|
|
|
Error : Incorrect file format 't_bug25347'
|
|
|
|
error : Corrupt
|
2007-04-16 21:00:16 +02:00
|
|
|
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
|
2007-04-04 00:12:31 +02:00
|
|
|
drop view v_bug25347;
|
|
|
|
drop table t_bug25347;
|
|
|
|
drop database d_bug25347;
|
|
|
|
use test;
|
2008-11-13 14:06:48 +01:00
|
|
|
create view v1 as select * from information_schema.routines;
|
|
|
|
check table v1, information_schema.routines;
|
|
|
|
Table Op Msg_type Msg_text
|
|
|
|
test.v1 check status OK
|
|
|
|
information_schema.routines check note The storage engine for the table doesn't support check
|
|
|
|
drop view v1;
|
2008-11-14 08:40:46 +01:00
|
|
|
CREATE TABLE t1(a INT);
|
|
|
|
CREATE TABLE t2(a INT);
|
|
|
|
test.t1
|
|
|
|
Error : Incorrect information in file: './test/t1.frm'
|
|
|
|
error : Corrupt
|
|
|
|
test.t2 OK
|
|
|
|
DROP TABLE t1, t2;
|
2006-07-24 22:31:20 +02:00
|
|
|
End of 5.0 tests
|
2007-10-24 19:36:57 +02:00
|
|
|
create table t1(a int);
|
|
|
|
create view v1 as select * from t1;
|
|
|
|
show tables;
|
|
|
|
Tables_in_test
|
|
|
|
t1
|
|
|
|
v1
|
|
|
|
show tables;
|
|
|
|
Tables_in_test
|
|
|
|
t1
|
|
|
|
#mysql50#v-1
|
|
|
|
v1
|
|
|
|
show tables;
|
|
|
|
Tables_in_test
|
|
|
|
t1
|
|
|
|
v1
|
|
|
|
v-1
|
|
|
|
drop view v1, `v-1`;
|
|
|
|
drop table t1;
|
2009-01-14 15:50:51 +01:00
|
|
|
SET NAMES utf8;
|
|
|
|
CREATE TABLE `#mysql50#@` (a INT);
|
|
|
|
SHOW TABLES;
|
|
|
|
Tables_in_test
|
|
|
|
#mysql50#@
|
|
|
|
SET NAMES DEFAULT;
|
|
|
|
mysqlcheck --fix-table-names --databases test
|
|
|
|
SET NAMES utf8;
|
|
|
|
SHOW TABLES;
|
|
|
|
Tables_in_test
|
|
|
|
@
|
|
|
|
DROP TABLE `@`;
|
|
|
|
CREATE TABLE `я` (a INT);
|
|
|
|
SET NAMES DEFAULT;
|
|
|
|
mysqlcheck --default-character-set="latin1" --databases test
|
|
|
|
test.?
|
2009-01-14 21:54:25 +01:00
|
|
|
Error : Table doesn't exist
|
2009-02-27 16:06:23 +01:00
|
|
|
status : Operation failed
|
2009-01-14 15:50:51 +01:00
|
|
|
mysqlcheck --default-character-set="utf8" --databases test
|
|
|
|
test.я OK
|
|
|
|
SET NAMES utf8;
|
|
|
|
DROP TABLE `я`;
|
|
|
|
SET NAMES DEFAULT;
|
|
|
|
CREATE DATABASE `#mysql50#a@b`;
|
|
|
|
USE `#mysql50#a@b`;
|
|
|
|
CREATE TABLE `#mysql50#c@d` (a INT);
|
|
|
|
CREATE TABLE t1 (a INT);
|
|
|
|
SELECT * FROM INFORMATION_SCHEMA.TRIGGERS
|
|
|
|
WHERE TRIGGER_SCHEMA="#mysql50#a@b" ORDER BY trigger_name;
|
|
|
|
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
|
|
|
|
NULL #mysql50#a@b tr1 INSERT NULL #mysql50#a@b #mysql50#c@d 0 NULL SET NEW.a = 10 * NEW.a ROW BEFORE NULL NULL OLD NEW NULL root@localhost latin1 latin1_swedish_ci latin1_swedish_ci
|
|
|
|
NULL #mysql50#a@b tr2 INSERT NULL #mysql50#a@b t1 0 NULL SET NEW.a = 100 * NEW.a ROW BEFORE NULL NULL OLD NEW NULL root@localhost latin1 latin1_swedish_ci latin1_swedish_ci
|
|
|
|
Warnings:
|
|
|
|
Warning 1603 Triggers for table `#mysql50#a@b`.`#mysql50#c@d` have no creation context
|
|
|
|
Warning 1603 Triggers for table `#mysql50#a@b`.`t1` have no creation context
|
|
|
|
mysqlcheck --fix-db-names --fix-table-names --all-databases
|
|
|
|
USE `a@b`;
|
|
|
|
SELECT * FROM INFORMATION_SCHEMA.TRIGGERS
|
|
|
|
WHERE TRIGGER_SCHEMA="a@b" ORDER BY trigger_name;
|
|
|
|
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER CHARACTER_SET_CLIENT COLLATION_CONNECTION DATABASE_COLLATION
|
|
|
|
NULL a@b tr1 INSERT NULL a@b c@d 0 NULL SET NEW.a = 10 * NEW.a ROW BEFORE NULL NULL OLD NEW NULL root@localhost utf8 utf8_general_ci latin1_swedish_ci
|
|
|
|
NULL a@b tr2 INSERT NULL a@b t1 0 NULL SET NEW.a = 100 * NEW.a ROW BEFORE NULL NULL OLD NEW NULL root@localhost utf8 utf8_general_ci latin1_swedish_ci
|
|
|
|
INSERT INTO `c@d` VALUES (2), (1);
|
|
|
|
SELECT * FROM `c@d`;
|
|
|
|
a
|
|
|
|
20
|
|
|
|
10
|
|
|
|
INSERT INTO t1 VALUES (3), (5);
|
|
|
|
SELECT * FROM t1;
|
|
|
|
a
|
|
|
|
300
|
|
|
|
500
|
|
|
|
DROP DATABASE `a@b`;
|
|
|
|
USE test;
|
2008-12-19 04:02:20 +01:00
|
|
|
End of 5.1 tests
|