Handling no group on Aggregates
[csql.git] / test / dbapi / Connection / isotest9.c
blob5333ad29e85cb954fa63613e06008f7b890b24ca
1 #include "common.h"
2 //READ_COMMITTED isolation testing
3 // T1 T2
4 // -------------------------
5 // Read
6 // Delete
7 // Read
8 // T1 second read should fail saying "tuple not found"
9 void* runTest1(void *p);
10 void* runTest2(void *p);
11 int *p1RetVal = NULL;
12 int *p2RetVal = NULL;
13 int selectDone = 0, deleteDone =0;
14 int main()
17 Connection conn;
18 DbRetVal rv = conn.open("root", "manager");
19 if (rv != OK) { printf("Error during connection %d\n", rv); return 1; }
20 DatabaseManager *dbMgr = conn.getDatabaseManager();
21 int ret = createTable(dbMgr);
22 if (ret != 0) { return 1; }
24 rv = conn.startTransaction();
25 if (rv != OK) {printf ("Unable to start trans\n"); return 1; }
26 rv = insert(dbMgr, 100, false);
27 if (rv != OK) { printf("Unable to insert\n"); return 2; }
28 conn.commit();
29 printf("Tuple inserted\n");
31 pthread_t thr[2];
32 int *status1, *status2;
33 pthread_create (&thr[0], NULL, &runTest1, NULL);
34 pthread_create (&thr[1], NULL, &runTest2, NULL);
35 printf("All threads started\n");
37 pthread_join(thr[0], (void**)&status1);
38 pthread_join(thr[1], (void**)&status2);
39 ret = 0;
40 if (*status1 != 0 || *status2 != 0) ret = 1;
41 dbMgr->dropTable("t1");
42 conn.close();
43 if (p1RetVal) { delete p1RetVal; p1RetVal = NULL; }
44 if (p2RetVal) { delete p2RetVal; p2RetVal = NULL; }
45 return ret;
47 void* runTest1(void *message)
49 Connection conn;
50 DbRetVal rv = conn.open("root", "manager");
51 if (rv != OK) { printf("Error during connection %d\n", rv); return NULL; }
52 DatabaseManager *dbMgr = conn.getDatabaseManager();
53 if (dbMgr == NULL) { printf("Auth failed\n"); return NULL;}
54 #ifndef DEFAULT
55 rv = conn.startTransaction(READ_COMMITTED);
56 #else
57 rv = conn.startTransaction();
58 #endif
60 if (rv != OK) return NULL;
61 printf("Thread and pid is %d %lu\n", os::getpid(), os::getthrid());
62 p1RetVal = new int();
63 *p1RetVal = 0;
64 rv = select(dbMgr, 100, true);
65 if (rv != OK) { printf("Test Failed:first thread failed to select\n"); *p1RetVal = 1; }
66 selectDone = 1;
67 while (deleteDone != 1) {::sleep(1); }
68 rv = select(dbMgr, 100, true);
69 if (rv == OK) { printf("Test Failed:first thread read succeeded \n"); *p1RetVal = 1; }
70 conn.commit();
71 rv = conn.close();
72 pthread_exit(p1RetVal);
74 void* runTest2(void *message)
76 Connection conn;
77 DbRetVal rv = conn.open("root", "manager");
78 if (rv != OK) { printf("Error during connection %d\n", rv); return NULL; }
79 DatabaseManager *dbMgr = conn.getDatabaseManager();
80 if (dbMgr == NULL) { printf("Auth failed\n"); return NULL;}
81 #ifndef DEFAULT
82 rv = conn.startTransaction(READ_COMMITTED);
83 #else
84 rv = conn.startTransaction();
85 #endif
87 if (rv != OK) return NULL;
88 printf("Thread and pid is %d %lu\n", os::getpid(), os::getthrid());
89 while (selectDone != 1) {::sleep(1); }
91 p2RetVal = new int();
92 *p2RetVal = 0;
93 rv = remove(dbMgr, 100, true);
94 if (rv != OK) { printf("Test Failed:second thread failed to delete\n"); *p2RetVal = 1; }
95 deleteDone =1;
96 conn.commit();
97 conn.close();
98 pthread_exit(p2RetVal);