You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-12 05:01:56 +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
@ -54,6 +54,7 @@ using namespace boost;
|
||||
#include "MonitorProcMem.h"
|
||||
#include "threadnaming.h"
|
||||
#include "vlarray.h"
|
||||
#include "widedecimalutils.h"
|
||||
|
||||
#define MAX64 0x7fffffffffffffffLL
|
||||
#define MIN64 0x8000000000000000LL
|
||||
@ -1098,8 +1099,8 @@ void BatchPrimitiveProcessor::initProcessor()
|
||||
}
|
||||
else
|
||||
{
|
||||
dataconvert::DataConvert::int128Min(bigMaxVal);
|
||||
dataconvert::DataConvert::int128Max(bigMinVal);
|
||||
utils::int128Min(bigMaxVal);
|
||||
utils::int128Max(bigMinVal);
|
||||
}
|
||||
|
||||
// @bug 1269, initialize data used by execute() for async loading blocks
|
||||
@ -2213,8 +2214,8 @@ int BatchPrimitiveProcessor::operator()()
|
||||
}
|
||||
else
|
||||
{
|
||||
dataconvert::DataConvert::int128Min(bigMaxVal);
|
||||
dataconvert::DataConvert::int128Max(bigMinVal);
|
||||
utils::int128Min(bigMaxVal);
|
||||
utils::int128Max(bigMinVal);
|
||||
}
|
||||
validCPData = false;
|
||||
#ifdef PRIMPROC_STOPWATCH
|
||||
|
Reference in New Issue
Block a user