Skip to content

Commit 7056c35

Browse files
committed
Try inserting data
1 parent 40cdd10 commit 7056c35

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

core-tests-android/src/androidTest/java/com/powersync/AndroidDatabaseTest.kt

+3
Original file line numberDiff line numberDiff line change
@@ -227,5 +227,8 @@ class AndroidDatabaseTest {
227227
fun canCreateTemporaryTable() = runTest {
228228
database.execute("PRAGMA temp_store = 1;") // Store temporary data as files
229229
database.execute("CREATE TEMP TABLE my_tbl (content ANY) STRICT;")
230+
for (i in 0..128) {
231+
database.execute("INSERT INTO my_tbl VALUES (randomblob(1024 * 1024))")
232+
}
230233
}
231234
}

0 commit comments

Comments
 (0)