aboutsummaryrefslogtreecommitdiff
path: root/contrib/storage-jdbc/src/test/resources/mysql-test-data-linux.sql
blob: e2091669739cee6c5655b012a05fff9e9fe4a993 (plain)
1
2
3
4
5
6
7
8
9
10
set global time_zone = "+00:00";

use drill_mysql_test;

create table CASESENSITIVETABLE (
  a   BLOB,
  b   BLOB
);

insert into CASESENSITIVETABLE (a, b) values ('this is a test', 'for case sensitive table names');