We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e88da1a commit 4ea8acaCopy full SHA for 4ea8aca
packages/powersync_core/lib/src/bucket_storage.dart
@@ -33,7 +33,7 @@ class BucketStorage {
33
34
Future<List<BucketState>> getBucketStates() async {
35
final rows = await select(
36
- 'SELECT name as bucket, cast(last_op as TEXT) as op_id FROM ps_buckets WHERE pending_delete = 0');
+ 'SELECT name as bucket, cast(last_op as TEXT) as op_id FROM ps_buckets WHERE pending_delete = 0 AND name != \'\$local\'');
37
return [
38
for (var row in rows)
39
BucketState(bucket: row['bucket'], opId: row['op_id'])
0 commit comments