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 e659b38 commit 745ef22Copy full SHA for 745ef22
packages/powersync_core/lib/src/sync/streaming_sync.dart
@@ -596,7 +596,12 @@ final class _ActiveRustStreamingIteration {
596
Future<void> syncIteration() async {
597
try {
598
await _control(
599
- 'start', convert.json.encode({'parameters': sync.options.params}));
+ 'start',
600
+ convert.json.encode({
601
+ 'parameters': sync.options.params,
602
+ 'schema': 'TODO: Pass-through schema (probably in serialized form)',
603
+ }),
604
+ );
605
assert(_completedStream.isCompleted, 'Should have started streaming');
606
await _completedStream.future;
607
} finally {
0 commit comments