plannerRowCountEstimate method

int plannerRowCountEstimate(
  1. String tableName
)

Test/diagnostics hook: the row count the planner currently sees for tableName. Reflects whichever signal _tableRowCountEstimate picks — ANALYZE stats first, then live row count, then 100.

Implementation

int plannerRowCountEstimate(String tableName) =>
    _tableRowCountEstimate(tableName);