Hi:
There is a minor bug in 5.3.0 for Postgres. Where it says:
pg_table_size(oid) AS \"Data_length\",
pg_indexes_size(oid) AS \"Index_length\"":"").",
obj_description(oid, 'pg_class') AS \"Comment\"
it should say:
pg_table_size(pg_class.oid) AS \"Data_length\",
pg_indexes_size(pg_class.oid) AS \"Index_length\"":"").",
obj_description(pg_class.oid, 'pg_class') AS \"Comment\"
Otherwise there is a "undefinded column oid" error message.
Thank you!
Carlos
Hi:
There is a minor bug in 5.3.0 for Postgres. Where it says:
it should say:
Otherwise there is a "undefinded column oid" error message.
Thank you!
Carlos