You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +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
@ -52,6 +52,7 @@ using namespace joblist;
|
||||
using namespace messageqcpp;
|
||||
#include "tablelockdata.h"
|
||||
#include "exceptclasses.h"
|
||||
#include "widedecimalutils.h"
|
||||
|
||||
namespace
|
||||
{
|
||||
@ -510,8 +511,8 @@ int DMLPackageProcessor::commitBatchAutoOnTransaction(uint64_t uniqueId, BRM::Tx
|
||||
aInfo.firstLbid = *iter;
|
||||
aInfo.max = numeric_limits<int64_t>::min(); // Not used
|
||||
aInfo.min = numeric_limits<int64_t>::max(); // Not used
|
||||
dataconvert::DataConvert::int128Min(aInfo.bigMax); // Not used
|
||||
dataconvert::DataConvert::int128Max(aInfo.bigMin); // Not used
|
||||
utils::int128Min(aInfo.bigMax); // Not used
|
||||
utils::int128Max(aInfo.bigMin); // Not used
|
||||
aInfo.seqNum = -1;
|
||||
cpInfos.push_back(aInfo);
|
||||
++iter;
|
||||
|
Reference in New Issue
Block a user