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 0441cc2 commit 92f8c5bCopy full SHA for 92f8c5b
packages/common/src/client/sync/stream/AbstractStreamingSyncImplementation.ts
@@ -623,10 +623,8 @@ The next upload iteration will be delayed.`);
623
}
624
625
private async legacyStreamingSyncIteration(signal: AbortSignal, resolvedOptions: RequiredPowerSyncConnectionOptions) {
626
- if (resolvedOptions.serializedSchema) {
627
- if (resolvedOptions.serializedSchema.raw_tables != null) {
628
- this.logger.warn('Raw tables require the Rust-based sync client. The JS client will ignore them.');
629
- }
+ if (resolvedOptions.serializedSchema?.raw_tables != null) {
+ this.logger.warn('Raw tables require the Rust-based sync client. The JS client will ignore them.');
630
631
632
this.logger.debug('Streaming sync iteration started');
0 commit comments