File Removed
[csql.git] / test / system / Allocator / tuplesize1.c
blob40ed02d96ceec6f985aac03fb0478785bf276dff
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 rv = dbMgr->createTable("t1", tabDef);
22 if (rv != OK) { printf("Table creation failed\n"); return rv; }
23 printf("Table created\n");
25 if (rv != OK) ret = 5;
26 TableImpl *table = (TableImpl*) dbMgr->openTable("t1");
27 table->printInfo();
28 dbMgr->closeTable((Table*)table);
29 dbMgr->dropTable("t1");
30 conn.close();
31 return ret;