You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
305 B

  1. --source include/have_case_sensitive_file_system.inc
  2. --source include/have_lowercase1.inc
  3. --disable_warnings
  4. drop table if exists t1;
  5. --enable_warnings
  6. create table t1 (id int) engine=myisam;
  7. insert into t1 values (1);
  8. create temporary table t2 select * from t1;
  9. drop temporary table t2;
  10. drop table t1;