summaryrefslogtreecommitdiff
path: root/mysql-test/suite/ibmdb2i/r/ibmdb2i_bug_44020.result
blob: ddf92db6bcad0d5402e7cc79fd8dad4a37a21da3 (plain)
1
2
3
4
5
6
7
8
9
10
11
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_@$#`;