*** empty log message ***
[csql.git] / test / system / Allocator / tuplesize1.c
blobf99373cec88e72fedb11d84e7d6de4fae43936c0
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 1; }
23 printf("Table created\n");
25 TableImpl *table = (TableImpl*) dbMgr->openTable("t1");
26 table->printInfo();
27 dbMgr->closeTable((Table*)table);
28 dbMgr->dropTable("t1");
29 conn.close();
30 return 0;