pgLab/pglablib/ui/catalog/tables/TableSize.h

14 lines
181 B
C
Raw Normal View History

2023-01-24 17:47:52 +00:00
#pragma once
#include <cstdint>
class TableSize {
public:
int oid;
int64_t totalBytes = -1;
int64_t indexBytes = -1;
int64_t toastBytes = -1;
TableSize();
};