mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge mysql.com:/home/ram/work/mysql-5.1-maint
into mysql.com:/home/ram/work/b30654/b30654.5.1 client/mysqlcheck.c: Auto merged
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
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;
|
||||
mysql.columns_priv OK
|
||||
@ -57,4 +57,9 @@ test.t1 OK
|
||||
test.t1 OK
|
||||
drop view v1;
|
||||
drop table t1;
|
||||
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`;
|
||||
End of 5.0 tests
|
||||
|
@ -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