You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-406 Improved Information Schema
* Add INFORMATION_SCHEMA.COLUMNSTORE_FILES which contains information about files * Remove file information from COLUMNSTORE_EXTENTS (due to above) * Hide columns with Object ID < 3000 (internal columns) * Fix bad calculation in data_size columns * Fix minor memory leak * Add compressedSize() function to IDBFileSystem to get the used file size for a compressed file * Add columnstore_info schema with utility stored procedures to access the information_schema tables
This commit is contained in:
@ -31,6 +31,7 @@ public:
|
||||
|
||||
/* virtual */ int mkdir(const char *pathname);
|
||||
/* virtual */ off64_t size(const char* path) const;
|
||||
/* virtual */ off64_t compressedSize(const char *path) const;
|
||||
/* virtual */ int remove(const char *pathname);
|
||||
/* virtual */ int rename(const char *oldpath, const char *newpath);
|
||||
/* virtual */ bool exists(const char* pathname) const;
|
||||
|
Reference in New Issue
Block a user