code reorg for Transactionw!
[csql.git] / test / sql / Datatype / exp.test007.ksh
blob02d8c886a667e966fa2dd1f14e4ce25659c47387
1 echo Create table t1(f1 varchar(10), f2 bigint);
2 Statement Executed
3 echo alter table t1 rename column f1 to F1;
4 Statement Executed: Rows Affected = 0
5 echo rename table t1 to T1;
6 Statement Executed: Rows Affected = 0
7 echo show tables;
8 =============TableNames===================
9 T1
10 ==========================================
11 <Table Information of all tables>
12 <TableInfo>
13 <TableName> T1 </TableName>
14 <FieldInfo>
15 <FieldName> F1 </FieldName>
16 <Type> 32 </Type>
17 <Length> 12 </Length>
18 <Primary> 0 </Primary>
19 <Null> 0 </Null>
20 <Default> 0 </Default>
21 <DefaultValue> </DefaultValue>
22 </FieldInfo>
23 <FieldInfo>
24 <FieldName> f2 </FieldName>
25 <Type> 2 </Type>
26 <Length> 8 </Length>
27 <Primary> 0 </Primary>
28 <Null> 0 </Null>
29 <Default> 0 </Default>
30 <DefaultValue> </DefaultValue>
31 </FieldInfo>
32 </TableInfo>
33 </Table Information of all tables>
34 <Index Information of all Indexs>
35 </Index Information of all Indexs>
36 Statement Executed