runPostCompactCleanup function
Run all registered post-compact cleanup callbacks.
Implementation
void runPostCompactCleanup(String? querySource) {
for (final callback in _postCompactCleanupCallbacks) {
try {
callback(querySource);
} catch (_) {
// Swallow errors in cleanup callbacks
}
}
}