mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
0141da0444
The current patch -- Adds the ibmdb2i suite -- related include(.inc) files -- tests for Bug#44020 and Bug#44025
9 lines
301 B
Text
9 lines
301 B
Text
source suite/ibmdb2i/include/have_ibmdb2i.inc;
|
|
source include/have_case_sensitive_file_system.inc;
|
|
|
|
create schema `A12345_@$#`;
|
|
create table `A12345_@$#`.t1 (i int) engine=ibmdb2i;
|
|
show create table `A12345_@$#`.t1;
|
|
select * from `A12345_@$#`.t1;
|
|
drop table `A12345_@$#`.t1;
|
|
drop schema `A12345_@$#`;
|