fix(sqlite): disable incomplete preload hint flush#4895
fix(sqlite): disable incomplete preload hint flush#4895NathanFlurry wants to merge 1 commit intographite-base/4895from
Conversation
Code Review: fix(sqlite): disable incomplete preload hint flushOverviewThis PR disables the SQLite preload hint flush feature by gutting the implementations of This is a legitimate "disable while unblocked" approach. The changes are safe and remove ~150 lines of code that could not work anyway. A few things worth addressing before this lands: Issues1. Background task still spawns and ticks every 30 s when the flag is enabled
2. The constant is still referenced in the active interval loop, so it is not dead code in the compiler sense, but it semantically controls nothing. A reader who sees the constant and the loop without noticing the empty called functions will be confused. A short inline comment on the constant noting it is disabled would help. 3. Empty stub functions with Underscored parameters are typically used to silence warnings inside a real body, not to mark a placeholder. Two cleaner options: (a) remove the stub functions entirely and comment out their call sites, or (b) add a one-line comment inside each body such as 4. No deferred work item tracked The comment on What is Good
|
dc5e609 to
215bb00
Compare
1000bc4 to
afafe22
Compare
215bb00 to
c237935
Compare
afafe22 to
7cff899
Compare

Description
Please include a summary of the changes and the related issue. Please also include relevant motivation and context.
Type of change
How Has This Been Tested?
Please describe the tests that you ran to verify your changes.
Checklist: