mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
5592d206f8
The current patch -- Adds the ibmdb2i suite -- related include(.inc) files -- tests for Bug#44020 and Bug#44025
11 lines
312 B
Text
11 lines
312 B
Text
create schema `A12345_@$#`;
|
|
create table `A12345_@$#`.t1 (i int) engine=ibmdb2i;
|
|
show create table `A12345_@$#`.t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`i` int(11) DEFAULT NULL
|
|
) ENGINE=IBMDB2I DEFAULT CHARSET=latin1
|
|
select * from `A12345_@$#`.t1;
|
|
i
|
|
drop table `A12345_@$#`.t1;
|
|
drop schema `A12345_@$#`;
|