mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
28 lines
680 B
Text
28 lines
680 B
Text
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;
|