I have a table called EVENTS on my PostgreSQL DB schema.
It is empty, i.e. when I execute
SELECT * FROM EVENTS
I get an empty results set.
Nonetheless, the table occupies 5MB of disk space.
I'm executing
SELECT round(pg_total_relation_size('events') / 1024.0 / 1024.0, 2)
And I'm getting 5.13MB.
I tried to explicitly run VACUUM, but it didn't change anything.
Any ideas?