i have a managed Mariadb database (10.3.23) on Azure.
Azure tells me that 2.4tb of disk space is used yet when i check the databases i don't reach that figure.
select sum(data_length/1024/1024/1024) as data_length_gb, sum(data_free/1024/1024/1024) as data_free_gb from information_schema.tables
returns
840.374844471924 and 257.385742187500 respectively.
what am i missing?