You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
build possible after lot of changes
This commit is contained in:
@@ -557,7 +557,7 @@ void CompareRule::compileRules(const std::vector<IdbSortSpec>& spec, const rowgr
|
||||
|
||||
for (auto spec_el : spec)
|
||||
{
|
||||
switch (types[spec_el.fIndex])
|
||||
switch (types[spec_el.fIndex].kind())
|
||||
{
|
||||
case CalpontSystemCatalog::TINYINT:
|
||||
{
|
||||
@@ -804,7 +804,7 @@ bool EqualCompData::operator()(Row::Pointer a, Row::Pointer b)
|
||||
{
|
||||
CalpontSystemCatalog::ColDataType type = fRow1.getColType(*i);
|
||||
|
||||
switch (type)
|
||||
switch (type.kind())
|
||||
{
|
||||
case CalpontSystemCatalog::TINYINT:
|
||||
case CalpontSystemCatalog::SMALLINT:
|
||||
@@ -874,8 +874,8 @@ bool EqualCompData::operator()(Row::Pointer a, Row::Pointer b)
|
||||
{
|
||||
eq = false;
|
||||
uint64_t ec = ERR_WF_UNKNOWN_COL_TYPE;
|
||||
cerr << IDBErrorInfo::instance()->errorMsg(ec, type) << " @" << __FILE__ << ":" << __LINE__;
|
||||
throw IDBExcept(IDBErrorInfo::instance()->errorMsg(ec, type), ec);
|
||||
cerr << IDBErrorInfo::instance()->errorMsg(ec, type.kind()) << " @" << __FILE__ << ":" << __LINE__;
|
||||
throw IDBExcept(IDBErrorInfo::instance()->errorMsg(ec, type.kind()), ec);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user