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
MCOL-641 Refactor initial extent elimination support.
This commit also adds support in TupleHashJoinStep::forwardCPData, although we currently do not support wide decimals as join keys. Row estimation to determine large-side of the join is also updated.
This commit is contained in:
committed by
Roman Nozdrin
parent
ca53b6348a
commit
d3bc68b02f
@@ -40,6 +40,7 @@
|
||||
#include "dataconvert.h"
|
||||
#include "exceptclasses.h"
|
||||
#include "mcs_decimal.h"
|
||||
#include "widedecimalutils.h"
|
||||
|
||||
#include "joblisttypes.h"
|
||||
|
||||
@@ -1735,8 +1736,8 @@ int BulkLoadBuffer::parseCol(ColumnInfo& columnInfo)
|
||||
}
|
||||
else
|
||||
{
|
||||
dataconvert::DataConvert::int128Max(bufStats.bigMinBufferVal);
|
||||
dataconvert::DataConvert::int128Min(bufStats.bigMaxBufferVal);
|
||||
utils::int128Max(bufStats.bigMinBufferVal);
|
||||
utils::int128Min(bufStats.bigMaxBufferVal);
|
||||
}
|
||||
updateCPInfoPendingFlag = false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user