mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
4e09e915ca
Problem: during a refactoring of mtr, a pattern for suppressing a warning from lowercase_table3 was lost. Fix: re-introduce the suppression. Problem 2: suppression was misspelt as supression. Fixed by adding a p. mysql-test/include/mtr_warnings.sql: fixed spelling error mysql-test/suite/rpl/t/rpl_bug33931.test: fixed spelling error mysql-test/suite/rpl/t/rpl_idempotency.test: fixed spelling error mysql-test/suite/rpl/t/rpl_temporary.test: fixed spelling error mysql-test/suite/rpl/t/rpl_temporary_errors.test: fixed spelling error mysql-test/t/lowercase_table3.test: fixed spelling error
38 lines
892 B
Text
38 lines
892 B
Text
#
|
|
# Test of force of lower-case-table-names=0
|
|
# (User has case insensitive file system and wants to preserve case of
|
|
# table names)
|
|
#
|
|
|
|
--source include/have_innodb.inc
|
|
--source include/have_lowercase0.inc
|
|
--source include/have_case_insensitive_file_system.inc
|
|
--source include/not_windows.inc
|
|
|
|
call mtr.add_suppression("Cannot find or open table test/BUG29839 from");
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS t1,T1;
|
|
--enable_warnings
|
|
|
|
#
|
|
# This is actually an error, but ok as the user has forced this
|
|
# by using --lower-case-table-names=0
|
|
|
|
CREATE TABLE t1 (a int);
|
|
SELECT * from T1;
|
|
drop table t1;
|
|
flush tables;
|
|
|
|
#
|
|
# InnoDB should in this case be case sensitive
|
|
# Note that this is not true on windows as no this OS, InnoDB is always
|
|
# storing things in lower case.
|
|
#
|
|
|
|
CREATE TABLE bug29839 (a int) ENGINE=INNODB;
|
|
--error 1146
|
|
SELECT * from BUG29839;
|
|
drop table bug29839;
|
|
|
|
# End of 4.1 tests
|