mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Merge mysql.com:/home/ram/work/b30654/b30654.5.0
into mysql.com:/home/ram/work/b30654/b30654.5.1
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
#
|
||||
|
||||
--disable_warnings
|
||||
DROP TABLE IF EXISTS t1;
|
||||
DROP TABLE IF EXISTS t1, `t``1`, `t 1`;
|
||||
drop view if exists v1;
|
||||
drop database if exists client_test_db;
|
||||
--enable_warnings
|
||||
@@ -37,4 +37,13 @@ create view v1 as select * from t1;
|
||||
drop view v1;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# Bug #30654: mysqlcheck fails during upgrade of tables whose names include backticks
|
||||
#
|
||||
create table `t``1`(a int);
|
||||
create table `t 1`(a int);
|
||||
--replace_result 'Table is already up to date' OK
|
||||
--exec $MYSQL_CHECK --databases test
|
||||
drop table `t``1`, `t 1`;
|
||||
|
||||
--echo End of 5.0 tests
|
||||
|
||||
Reference in New Issue
Block a user