Open dbist opened 2 years ago
could end up relating to https://github.com/cockroachdb/cockroach/issues/86017
NB: the idea to use range stats is not good as explained in epic CRDB-22711.
With the new implementation, we will indeed be able to benefit from the solution to #86017 directly.
Is your feature request related to a problem? Please describe. Today it is difficult to tell what a table or database size is w/out looking at the DB Console. It requires running a query similar to
to provide logical table size before replication. In Postgres, you can easily get database size with a command
\l+
. Given our promise to be PG-compatible, we should support the same UX.Describe the solution you'd like
I would like to see output similar to
Or perhaps adding a column to the output of
show ranges from table
command.Jira issue: CRDB-18461