Hi,
I've noticed that row count doesn't render correctly on one of my tables.
I'm guessing that it happens so because of row count being a bit to large. PG is storing this tuple count as real which is a 32 bit float which has quite small precision and it might happen that without explicit rounding we will get some decimal points there which can break the rendering.
The rest of tables are rendering just fine.
The following SQL query returns the following result
SELECT reltuples AS estimated_count, pg_typeof(reltuples), reltuples::bigint
FROM pg_class
WHERE relname = 'some_table';
| estimated_count |
pg_typeof |
reltuples |
| 1.1036941e+10 |
real |
11036941312 |