1
[csql.git] / test / dbapi / Connection / isotest24.c
blob0f4b5d4859427172dc9a3ca38ea50b07349f65a9
1 #include "common.h"
2 //READ_REPEATABLE isolation testing
3 //T1 doing select and T2 doing update for same tuple
4 //Both should succeed
6 void* runTest1(void *p);
7 void* runTest2(void *p);
8 int *p1RetVal = NULL;
9 int *p2RetVal = NULL;
10 int main()
13 Connection conn;
14 DbRetVal rv = conn.open("root", "manager");
15 if (rv != OK) { printf("Error during connection %d\n", rv); return 1; }
16 DatabaseManager *dbMgr = conn.getDatabaseManager();
17 int ret = createTable(dbMgr);
18 if (ret != 0) { return 1; }
20 rv = conn.startTransaction();
21 if (rv != OK) {printf ("Unable to start trans\n"); return 1; }
22 rv = insert(dbMgr, 100, false);
23 if (rv != OK) { printf("Unable to insert\n"); return 2; }
24 conn.commit();
25 printf("Tuple inserted\n");
27 pthread_t thr[2];
28 int *status1, *status2;
29 pthread_create (&thr[0], NULL, &runTest1, NULL);
30 pthread_create (&thr[1], NULL, &runTest2, NULL);
31 printf("All threads started\n");
33 pthread_join(thr[0], (void**)&status1);
34 pthread_join(thr[1], (void**)&status2);
35 ret = 0;
36 if (*status1 != 0 || *status2 != 0) ret = 1;
37 dbMgr->dropTable("t1");
38 conn.close();
39 if (p1RetVal) { delete p1RetVal; p1RetVal = NULL; }
40 if (p2RetVal) { delete p2RetVal; p2RetVal = NULL; }
41 return ret;
43 void* runTest1(void *message)
45 Connection conn;
46 DbRetVal rv = conn.open("root", "manager");
47 if (rv != OK) { printf("Error during connection %d\n", rv); return NULL; }
48 DatabaseManager *dbMgr = conn.getDatabaseManager();
49 if (dbMgr == NULL) { printf("Auth failed\n"); return NULL;}
50 rv = conn.startTransaction(READ_REPEATABLE);
51 if (rv != OK) return NULL;
52 printf("Thread and pid is %d %lu\n", os::getpid(), os::getthrid());
53 p1RetVal = new int();
54 *p1RetVal = 0;
55 rv = select(dbMgr, 100, true);
56 if (rv != OK) { printf("Test Failed:first thread failed to select\n"); *p1RetVal = 1; }
58 conn.commit();
59 rv = conn.close();
60 pthread_exit(p1RetVal);
62 void* runTest2(void *message)
64 Connection conn;
65 DbRetVal rv = conn.open("root", "manager");
66 if (rv != OK) { printf("Error during connection %d\n", rv); return NULL; }
67 DatabaseManager *dbMgr = conn.getDatabaseManager();
68 if (dbMgr == NULL) { printf("Auth failed\n"); return NULL;}
69 rv = conn.startTransaction(READ_REPEATABLE);
70 if (rv != OK) return NULL;
71 printf("Thread and pid is %d %lu\n", os::getpid(), os::getthrid());
73 p2RetVal = new int();
74 *p2RetVal = 0;
75 rv = update(dbMgr, 100, false);
76 if (rv == OK) { printf("Test Failed:second thread updated\n"); *p2RetVal = 1; }
77 conn.commit();
78 conn.close();
79 pthread_exit(p2RetVal);