Skip to content

Commit 0f3d3d8

Browse files
committed
feat: add test case for dataSeek.
1 parent bc1ceba commit 0f3d3d8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/system/Database/Live/GetTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ public function testGetDataSeek()
109109
$this->expectException(DatabaseException::class);
110110
$this->expectExceptionMessage('SQLite3 doesn\'t support seeking to other offset.');
111111
}
112+
elseif ($this->db->DBDriver === 'OCI8')
113+
{
114+
$this->markTestSkipped('OCI8 does not support data seek.');
115+
}
112116

113117
$data->dataSeek(3);
114118

0 commit comments

Comments
 (0)