2 //READ_COMMITTED isolation testing
3 //T1 and T2 both inserting, T2 will fail saying unique key constraint
5 void* runTest1(void *p
);
6 void* runTest2(void *p
);
13 DbRetVal rv
= conn
.open("root", "manager");
14 if (rv
!= OK
) { printf("Error during connection %d\n", rv
); return 1; }
15 DatabaseManager
*dbMgr
= conn
.getDatabaseManager();
16 int ret
= createTable(dbMgr
);
17 if (ret
!= 0) { return 1; }
20 int *status1
, *status2
;
21 pthread_create (&thr
[0], NULL
, &runTest1
, NULL
);
22 pthread_create (&thr
[1], NULL
, &runTest2
, NULL
);
23 printf("All threads started\n");
25 pthread_join(thr
[0], (void**)&status1
);
26 pthread_join(thr
[1], (void**)&status2
);
27 dbMgr
->dropTable("t1");
29 if (*status1
!= 0 || *status2
!= 0) return 1;
30 if (p1RetVal
) { delete p1RetVal
; p1RetVal
= NULL
; }
31 if (p2RetVal
) { delete p2RetVal
; p2RetVal
= NULL
; }
34 void* runTest1(void *message
)
37 DbRetVal rv
= conn
.open("root", "manager");
38 if (rv
!= OK
) { printf("Error during connection %d\n", rv
); return NULL
; }
39 DatabaseManager
*dbMgr
= conn
.getDatabaseManager();
40 if (dbMgr
== NULL
) { printf("Auth failed\n"); return NULL
;}
42 rv
= conn
.startTransaction(READ_COMMITTED
);
44 rv
= conn
.startTransaction();
46 if (rv
!= OK
) return NULL
;
47 printf("Thread and pid is %d %lu\n", os::getpid(), os::getthrid());
51 rv
= insert(dbMgr
, 100, true);
52 if (rv
!= OK
) { printf("Test Failed:first thread failed to insert\n"); *p1RetVal
= 1; }
56 printf("conn closed %d for Thread and pid is %d %lu\n", rv
, os::getpid(), os::getthrid());
57 pthread_exit(p1RetVal
);
59 void* runTest2(void *message
)
62 DbRetVal rv
= conn
.open("root", "manager");
63 if (rv
!= OK
) { printf("Error during connection %d\n", rv
); return NULL
; }
64 DatabaseManager
*dbMgr
= conn
.getDatabaseManager();
65 if (dbMgr
== NULL
) { printf("Auth failed\n"); return NULL
;}
67 rv
= conn
.startTransaction(READ_COMMITTED
);
69 rv
= conn
.startTransaction();
71 if (rv
!= OK
) return NULL
;
72 printf("Thread and pid is %d %lu\n", os::getpid(), os::getthrid());
77 rv
= insert(dbMgr
, 100, false);
78 if (rv
== OK
) { printf("Test Failed:second thread inserted\n"); *p2RetVal
= 1; }
82 printf("conn closed %d for Thread and pid is %d %lu\n", rv
, os::getpid(), os::getthrid());
83 pthread_exit(p2RetVal
);