We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40cdd10 commit 7056c35Copy full SHA for 7056c35
core-tests-android/src/androidTest/java/com/powersync/AndroidDatabaseTest.kt
@@ -227,5 +227,8 @@ class AndroidDatabaseTest {
227
fun canCreateTemporaryTable() = runTest {
228
database.execute("PRAGMA temp_store = 1;") // Store temporary data as files
229
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
+ }
233
}
234
0 commit comments