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 7197949 commit b3fa653Copy full SHA for b3fa653
tools/diagnostics-app/src/app/views/sync-diagnostics.tsx
@@ -43,12 +43,12 @@ SELECT
43
stats.tables,
44
stats.data_size,
45
stats.metadata_size,
46
- stats.row_count,
+ IFNULL(stats.row_count, 0) as row_count,
47
local.download_size,
48
local.total_operations,
49
local.downloading
50
FROM local_bucket_data local
51
-JOIN oplog_stats stats ON stats.name = local.id`;
+LEFT JOIN oplog_stats stats ON stats.name = local.id`;
52
53
const TABLES_QUERY = `
54
SELECT row_type as name, count() as count, sum(length(data)) as size FROM ps_oplog GROUP BY row_type
0 commit comments