*** empty log message ***
[csql.git] / test / tools / csql / dbobjname.sql
blob10c94470be8093e73d26db777a5409624057481f
1 echo create table t-1(f1 int,f2 int);
2 create table t-1(f1 int,f2 int);
3 echo create table t!1(f1 int,f2 int);
4 create table t!1(f1 int,f2 int);
5 echo create table t@1(f1 int,f2 int);
6 create table t@1(f1 int,f2 int);
7 echo create table t#1(f1 int,f2 int);
8 create table t#1(f1 int,f2 int);
9 echo create table t$1(f1 int,f2 int);
10 create table t$1(f1 int,f2 int);
11 echo create table t%1(f1 int,f2 int);
12 create table t%1(f1 int,f2 int);
13 echo create table t^1(f1 int,f2 int);
14 create table t^1(f1 int,f2 int);
15 echo create table t*1(f1 int,f2 int);
16 create table t*1(f1 int,f2 int);
17 echo create table t+1(f1 int,f2 int);
18 create table t+1(f1 int,f2 int);
19 echo create table t/1(f1 int,f2 int);
20 create table t/1(f1 int,f2 int);
21 echo create table t~1(f1 int,f2 int);
22 create table t~1(f1 int,f2 int);
23 echo create table t`1(f1 int,f2 int);
24 create table t`1(f1 int,f2 int);
25 echo create table t[]1(f1 int,f2 int);
26 create table t[]1(f1 int,f2 int);
27 echo create table _t1(f1 int,f2 int);
28 create table _t1(f1 int,f2 int);
29 echo create table t1(f-1 int);
30 create table t1(f-1 int,f2 int);
31 echo create table t1(f-1 int,f2 int);
32 create table t1(f-1 int,f2 int);
33 echo create table t1(f1 int,f-2 int);
34 create table t1(f1 int,f-2 int);