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