File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
common/src/commonMain/kotlin/com/powersync/bucket Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ internal class BucketStorageImpl(
7676 return false
7777
7878 val seqBefore =
79- db.getOptional(" SELECT seq FROM sqlite_sequence WHERE name = '${InternalTable .CRUD } '" ) {
79+ db.getOptional(" SELECT seq FROM main. sqlite_sequence WHERE name = '${InternalTable .CRUD } '" ) {
8080 it.getLong(0 )!!
8181 } ? : // Nothing to update
8282 return false
@@ -92,7 +92,7 @@ internal class BucketStorageImpl(
9292 }
9393
9494 val seqAfter =
95- tx.getOptional(" SELECT seq FROM sqlite_sequence WHERE name = '${InternalTable .CRUD } '" ) {
95+ tx.getOptional(" SELECT seq FROM main. sqlite_sequence WHERE name = '${InternalTable .CRUD } '" ) {
9696 it.getLong(0 )!!
9797 }
9898 ? : // assert isNotEmpty
You can’t perform that action at this time.
0 commit comments