2 //READ_REPEATABLE isolation testing
3 //T1 doing update and T2 doing delete for same tuple
6 void* runTest1(void *p
);
7 void* runTest2(void *p
);
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; }
25 printf("Tuple inserted\n");
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
);
36 if (*status1
!= 0 || *status2
!= 0) ret
= 1;
37 dbMgr
->dropTable("t1");
39 if (p1RetVal
) { delete p1RetVal
; p1RetVal
= NULL
; }
40 if (p2RetVal
) { delete p2RetVal
; p2RetVal
= NULL
; }
43 void* runTest1(void *message
)
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());
55 rv
= update(dbMgr
, 100, true);
56 if (rv
!= OK
) { printf("Test Failed:first thread failed to update\n"); *p1RetVal
= 1; }
59 pthread_exit(p1RetVal
);
61 void* runTest2(void *message
)
64 DbRetVal rv
= conn
.open("root", "manager");
65 if (rv
!= OK
) { printf("Error during connection %d\n", rv
); return NULL
; }
66 DatabaseManager
*dbMgr
= conn
.getDatabaseManager();
67 if (dbMgr
== NULL
) { printf("Auth failed\n"); return NULL
;}
68 rv
= conn
.startTransaction(READ_REPEATABLE
);
69 if (rv
!= OK
) return NULL
;
70 printf("Thread and pid is %d %lu\n", os::getpid(), os::getthrid());
74 rv
= remove(dbMgr
, 100, false);
75 if (rv
== OK
) { printf("Test Failed:second thread deleted\n"); *p2RetVal
= 1; }
78 pthread_exit(p2RetVal
);