in the wiki for PostgreSQL related to TOASTed tables (https://wiki.postgresql.org/wiki/TOAST) says that:
"You cannot have more than 2^32 (4 billion) out-of-line values in a single table, because there would have to be duplicated OIDs in its TOAST table."
What does it mean?
1) the TOAST table cannot have more than 4 billion rows? or
2) the TOAST table cannot have more than 4 billion distinct values of OIDs (values for column chunk_id)?
We have a toast table with 3.2 billion rows and wondering if we are close to the limits.
Thanks in advance