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-309 Implement Information Schema tables
This patch does the following: * Fix a year storage issue in the datestamp for the columnstore tables metadata table (note that any previous tables will still have the incorrect year stored). * Expose the table creation date in CalpontSystemCatalog::getTables() * Add an INFORMATION_SCHEMA table listing the tables in ColumnStore (similar to systable) * Add an INFORMATION_SCHEMA table listing the columns in ColumnStore (similar to syscolumn) * Add an INFORMATION_SCHEMA table listing the extents in ColumnStore (similar to the editem tool but with additional file information) * Modifies the build system and scripts to support the new tables
This commit is contained in:
@ -193,7 +193,7 @@ uint8_t WE_DDLCommandProc::writeSystable(ByteStream& bs, std::string &err)
|
||||
|
||||
t = time(NULL);
|
||||
gmtime_r(&t, &tmp);
|
||||
aDay.year = tmp.tm_year;
|
||||
aDay.year = tmp.tm_year + 1900;
|
||||
aDay.month = tmp.tm_mon+1;
|
||||
aDay.day = tmp.tm_mday;
|
||||
|
||||
|
Reference in New Issue
Block a user