1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

build possible after lot of changes

This commit is contained in:
Nedeljko Stefanovic
2025-07-28 19:54:31 +00:00
parent 854c9d5943
commit c4ca1e4478
67 changed files with 614 additions and 260 deletions

View File

@@ -1190,8 +1190,7 @@ uint8_t WE_DDLCommandProc::createtablefiles(ByteStream& bs, std::string& err)
{
bs >> tmp32;
dataOid = tmp32;
bs >> tmp8;
colDataType = (CalpontSystemCatalog::ColDataType)tmp8;
bs >> colDataType;
bs >> tmp8;
tokenFlag = (tmp8 != 0);
bs >> tmp32;
@@ -3201,8 +3200,7 @@ uint8_t WE_DDLCommandProc::fillNewColumn(ByteStream& bs, std::string& err)
dataOid = tmp32;
bs >> tmp32;
dictOid = tmp32;
bs >> tmp8;
dataType = (CalpontSystemCatalog::ColDataType)tmp8;
bs >> dataType;
bs >> tmp8;
autoincrement = (tmp8 != 0);
bs >> tmp32;
@@ -3216,8 +3214,7 @@ uint8_t WE_DDLCommandProc::fillNewColumn(ByteStream& bs, std::string& err)
compressionType = tmp8;
bs >> tmp32;
refColOID = tmp32;
bs >> tmp8;
refColDataType = (CalpontSystemCatalog::ColDataType)tmp8;
bs >> refColDataType;
bs >> tmp32;
refColWidth = tmp32;
bs >> tmp8;