mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
12 lines
305 B
Text
12 lines
305 B
Text
--source include/have_case_sensitive_file_system.inc
|
|
--source include/have_lowercase1.inc
|
|
|
|
--disable_warnings
|
|
drop table if exists t1;
|
|
--enable_warnings
|
|
|
|
create table t1 (id int) engine=myisam;
|
|
insert into t1 values (1);
|
|
create temporary table t2 select * from t1;
|
|
drop temporary table t2;
|
|
drop table t1;
|