Describe the bug
createWrappedSyncConfig in db-sqlite-persistence-core returns its loadSubset as an async function, so it is always a Promise — even when everything it awaits is already settled and the wrapped sync answered with a synchronous true.
That matters because LoadSubsetFn is declared as a sometimes-synchronous contract in packages/db/src/types.ts:
export type LoadSubsetFn = (options: LoadSubsetOptions) => true | Promise<void>
and CollectionSyncManager.loadSubset branches on it (packages/db/src/collection/sync.ts:853):
if (result instanceof Promise) { this.trackLoadPromise(result); ... }
return true
An async implementation can never reach the true branch. So for any persisted collection, a live query over an already-loaded subset is never synchronously ready.
Under useLiveSuspenseQuery that is fatal rather than merely slow: a component that suspends before it mounts loses its refs, so each retry constructs a fresh live query, which is loading, which throws a fresh promise, which resolves, which retries. The boundary never releases.
To Reproduce
Full runnable repro (node + real-browser): https://gist.github.com/MAST1999/62526dceb542323d009d036e3bb8ed7e
npm install
npm run node # the cause — no React, no browser
npm run browser # the symptom — real Chromium via @vitest/browser
There is no SQLite in the repro. It uses an in-memory PersistenceAdapter of the same shape as this repo's own createRecordingAdapter in packages/db-sqlite-persistence-core/tests/persisted.test.ts, because the defect is in the sync wrapper that persistedCollectionOptions puts in front of any adapter. The only difference between the two cases is whether the options went through persistedCollectionOptions.
The mock sync returns a bare true from loadSubset for a subset it has already loaded, which is exactly what the declared contract is for:
loadSubset: (options) => {
const key = JSON.stringify(options.where ?? null)
if (loaded.has(key)) return true // already here — nothing to await
loaded.add(key)
begin(); for (const row of ROWS) write({ type: `insert`, value: row }); commit()
return true
}
node-repro.mjs:
no persistence : ready (2 rows loaded)
persisted : loading (2 rows loaded)
suspense.test.jsx, in Chromium:
✓ an unpersisted on-demand collection settles under Suspense 54ms
× the same collection with persistence never leaves its fallback
→ the boundary never released; the component re-suspended 13778 times
Expected behavior
A persisted on-demand collection should honour the same true | Promise<void> contract as an unpersisted one: when the wrapped sync answers true and there is nothing left to await, the wrapper should return true too, and the live query should be ready at construction.
Cause
packages/db-sqlite-persistence-core/src/persisted.ts, createWrappedSyncConfig (line 2654 on main @ dffb17f):
loadSubset: async (options: LoadSubsetOptions) => {
const acquisition = { forwarded: false }
acquisitions.set(options, acquisition)
await fullStartPromise
const resolvedSourceResult = await sourceResultPromise
...
return runtime.loadSubset(options, (loadOptions) => { ... })
}
Note also that runtime.loadSubset (line 1043) re-runs hydrateSubsetUnsafe against the store on every call, including a repeat call for a subset already in activeSubsets — so the redundant work is real, not just the lost true.
async syntax structurally cannot express T | Promise<T> (microsoft/TypeScript#33595), so conforming to LoadSubsetFn requires hand-writing the branch.
Prior art in this repo
@tanstack/electric-db-collection writes its raw fetcher as async too, but does not hand it back directly — it wraps it (packages/electric-db-collection/src/electric.ts:860):
return new DeduplicatedLoadSubset({ loadSubset })
and DeduplicatedLoadSubset.loadSubset returns the literal true for an already-completed demand key. grep -rn "DeduplicatedLoadSubset" packages/db-sqlite-persistence-core/src/ returns nothing — the persistence package skips that layer entirely.
Additional context
This is distinct from #1855 (orderBy + limit chaining subset requests), though the two share a symptom. This one needs no orderBy and no limit — just persistence.
Happy to open a PR.
@tanstack/db@0.9.2,@tanstack/react-db@0.4.1,@tanstack/db-sqlite-persistence-core@0.2.23)Describe the bug
createWrappedSyncConfigindb-sqlite-persistence-corereturns itsloadSubsetas anasyncfunction, so it is always aPromise— even when everything it awaits is already settled and the wrapped sync answered with a synchronoustrue.That matters because
LoadSubsetFnis declared as a sometimes-synchronous contract inpackages/db/src/types.ts:and
CollectionSyncManager.loadSubsetbranches on it (packages/db/src/collection/sync.ts:853):An
asyncimplementation can never reach thetruebranch. So for any persisted collection, a live query over an already-loaded subset is never synchronouslyready.Under
useLiveSuspenseQuerythat is fatal rather than merely slow: a component that suspends before it mounts loses its refs, so each retry constructs a fresh live query, which isloading, which throws a fresh promise, which resolves, which retries. The boundary never releases.To Reproduce
Full runnable repro (node + real-browser): https://gist.github.com/MAST1999/62526dceb542323d009d036e3bb8ed7e
There is no SQLite in the repro. It uses an in-memory
PersistenceAdapterof the same shape as this repo's owncreateRecordingAdapterinpackages/db-sqlite-persistence-core/tests/persisted.test.ts, because the defect is in the sync wrapper thatpersistedCollectionOptionsputs in front of any adapter. The only difference between the two cases is whether the options went throughpersistedCollectionOptions.The mock sync returns a bare
truefromloadSubsetfor a subset it has already loaded, which is exactly what the declared contract is for:node-repro.mjs:suspense.test.jsx, in Chromium:Expected behavior
A persisted
on-demandcollection should honour the sametrue | Promise<void>contract as an unpersisted one: when the wrapped sync answerstrueand there is nothing left to await, the wrapper should returntruetoo, and the live query should bereadyat construction.Cause
packages/db-sqlite-persistence-core/src/persisted.ts,createWrappedSyncConfig(line 2654 onmain@ dffb17f):Note also that
runtime.loadSubset(line 1043) re-runshydrateSubsetUnsafeagainst the store on every call, including a repeat call for a subset already inactiveSubsets— so the redundant work is real, not just the losttrue.asyncsyntax structurally cannot expressT | Promise<T>(microsoft/TypeScript#33595), so conforming toLoadSubsetFnrequires hand-writing the branch.Prior art in this repo
@tanstack/electric-db-collectionwrites its raw fetcher asasynctoo, but does not hand it back directly — it wraps it (packages/electric-db-collection/src/electric.ts:860):and
DeduplicatedLoadSubset.loadSubsetreturns the literaltruefor an already-completed demand key.grep -rn "DeduplicatedLoadSubset" packages/db-sqlite-persistence-core/src/returns nothing — the persistence package skips that layer entirely.Additional context
This is distinct from #1855 (
orderBy+limitchaining subset requests), though the two share a symptom. This one needs noorderByand nolimit— just persistence.Happy to open a PR.