Unit test for BufferPool.getPage() assuming locking. Acquires two read locks on the same page.
()
| 108 | * Acquires two read locks on the same page. |
| 109 | */ |
| 110 | @Test public void acquireReadLocksOnSamePage() throws Exception { |
| 111 | metaLockTester(tid1, p0, Permissions.READ_ONLY, |
| 112 | tid2, p0, Permissions.READ_ONLY, true); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Unit test for BufferPool.getPage() assuming locking. |
nothing calls this directly
no test coverage detected