(self)
| 1543 | blob.read) |
| 1544 | |
| 1545 | def test_blob_32bit_rowid(self): |
| 1546 | # gh-100370: we should not get an OverflowError for 32-bit rowids |
| 1547 | with memory_database() as cx: |
| 1548 | rowid = 2**32 |
| 1549 | cx.execute("create table t(t blob)") |
| 1550 | cx.execute("insert into t(rowid, t) values (?, zeroblob(1))", (rowid,)) |
| 1551 | cx.blobopen('t', 't', rowid) |
| 1552 | |
| 1553 | |
| 1554 | @threading_helper.requires_working_threading() |
nothing calls this directly
no test coverage detected