You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
storage/pg: only report snapshot size error in strict mode
Our default snapshot size determination strategy is to use the table
statistics in pg instead of performing a `SELECT COUNT(*)` on the table.
This saves resources from the upstream database since it only reads a
couple of rows from the statistics table at the expense of accuracy.
This PR silences an error that only makes sense when the `COUNT(*)`
strategy is used.
Signed-off-by: Petros Angelatos <[email protected]>
0 commit comments