You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
MCOL-642 Separate TEXT from BLOB
* TEXT and BLOB now have separate identifiers internally * TEXT columns are identified as such in system catalog * cpimport only requires hex input for BLOB, not TEXT
This commit is contained in:
@ -141,6 +141,8 @@ string name(CalpontSystemCatalog::ColType& ct)
|
||||
return "VARBINARY";
|
||||
case CalpontSystemCatalog::BLOB:
|
||||
return "BLOB";
|
||||
case CalpontSystemCatalog::TEXT:
|
||||
return "TEXT";
|
||||
case CalpontSystemCatalog::CLOB:
|
||||
return "CLOB";
|
||||
case CalpontSystemCatalog::UINT:
|
||||
@ -318,6 +320,7 @@ const int64_t IDB_format(char* str, CalpontSystemCatalog::ColType& ct, uint8_t&
|
||||
case CalpontSystemCatalog::VARCHAR:
|
||||
case CalpontSystemCatalog::VARBINARY:
|
||||
case CalpontSystemCatalog::BLOB:
|
||||
case CalpontSystemCatalog::TEXT:
|
||||
case CalpontSystemCatalog::CLOB:
|
||||
{
|
||||
string i = boost::any_cast<string>(anyVal);
|
||||
|
Reference in New Issue
Block a user