ibmdb2i_bug_44610.test 680 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
source suite/ibmdb2i/include/have_ibmdb2i.inc;

# Test RCDFMT generation for a variety of kinds of table names
create table ABC (i int) engine=ibmdb2i;
drop table ABC;

create table `1234567890ABC` (i int) engine=ibmdb2i;
drop table `1234567890ABC`;

create table `!@#$%` (i int) engine=ibmdb2i;
drop table `!@#$%`;

create table `ABCD#########` (i int) engine=ibmdb2i;
drop table `ABCD#########`;

create table `_` (i int) engine=ibmdb2i;
drop table `_`;

create table `abc##def` (i int) engine=ibmdb2i;
drop table `abc##def`;

set names utf8;
create table İ (s1 int) engine=ibmdb2i;
drop table İ;

create table İİ (s1 int) engine=ibmdb2i;
drop table İİ;
set names latin1;