*** empty log message ***
[csql.git] / test / system / Allocator / tuplesize4.c
blob974cbe8b1e50075760ebb3e4f2cb7376c8e9eb11
1 /**********************************************************
2 * Test Case
3 * create table t1 with int
4 * create index if specified
5 * check table information for tuple size
6 */
7 #include <CSql.h>
8 #include <TableImpl.h>
9 #include <DatabaseManagerImpl.h>
10 int main()
12 Connection conn;
13 DbRetVal rv = conn.open("root", "manager");
14 if (rv != OK) return 1;
15 DatabaseManagerImpl *dbMgr = (DatabaseManagerImpl*) conn.getDatabaseManager();
16 if (dbMgr == NULL) { printf("Auth failed\n"); return 2;}
17 int ret =0, rc =0;
19 TableDef tabDef;
20 tabDef.addField("f1", typeInt, 0, NULL, true);
21 tabDef.addField("f2", typeString, 1);
22 tabDef.addField("f3", typeString, 5);
23 tabDef.addField("f4", typeInt);
24 rv = dbMgr->createTable("t1", tabDef);
25 if (rv != OK) { printf("Table creation failed\n"); return rv; }
26 printf("Table created\n");
28 if (rv != OK) ret = 5;
29 TableImpl *table = (TableImpl*) dbMgr->openTable("t1");
30 table->printInfo();
31 dbMgr->closeTable((Table*)table);
32 dbMgr->dropTable("t1");
33 conn.close();
34 return ret;