You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-05 16:15:50 +03:00
Add a limit (as runtime value) for long in queries
This commit is contained in:
@@ -9,7 +9,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "rewrites.h"
|
#include "rewrites.h"
|
||||||
|
#include <cstdint>
|
||||||
#include <typeinfo>
|
#include <typeinfo>
|
||||||
|
#include "constantfilter.h"
|
||||||
#include "objectreader.h"
|
#include "objectreader.h"
|
||||||
#include "installdir.h"
|
#include "installdir.h"
|
||||||
#include "parsetree.h"
|
#include "parsetree.h"
|
||||||
@@ -482,4 +484,19 @@ bool NodeSemanticComparator::operator()(execplan::ParseTree* left, execplan::Par
|
|||||||
return left->data()->data() < right->data()->data();
|
return left->data()->data() < right->data()->data();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool checkFiltersLimit(execplan::ParseTree* tree, uint64_t limit)
|
||||||
|
{
|
||||||
|
uint64_t maxLimit = 0;
|
||||||
|
auto walker = [](const execplan::ParseTree* node, void* maxLimit){
|
||||||
|
auto maybe_cf = dynamic_cast<ConstantFilter*>(node->data());
|
||||||
|
if (maybe_cf != nullptr && (maybe_cf->op()->op() == OpType::OP_OR || maybe_cf->op()->op() == OpType::OP_IN))
|
||||||
|
{
|
||||||
|
*((uint64_t*)maxLimit) = std::max(maybe_cf->filterList().size(), *((uint64_t*)maxLimit));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
tree->walk(walker, &maxLimit);
|
||||||
|
return maxLimit <= limit;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace execplan
|
} // namespace execplan
|
||||||
|
@@ -36,5 +36,5 @@ struct NodeSemanticComparator
|
|||||||
// Walk the tree and find out common conjuctions
|
// Walk the tree and find out common conjuctions
|
||||||
template<bool stableSort = false>
|
template<bool stableSort = false>
|
||||||
execplan::ParseTree* extractCommonLeafConjunctionsToRoot(execplan::ParseTree* tree);
|
execplan::ParseTree* extractCommonLeafConjunctionsToRoot(execplan::ParseTree* tree);
|
||||||
|
bool checkFiltersLimit(execplan::ParseTree* tree, uint64_t limit);
|
||||||
} // namespace execplan
|
} // namespace execplan
|
||||||
|
@@ -32,6 +32,7 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
#include "messagelog.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
@@ -56,6 +57,7 @@ using namespace logging;
|
|||||||
#include "ha_subquery.h"
|
#include "ha_subquery.h"
|
||||||
#include "ha_mcs_pushdown.h"
|
#include "ha_mcs_pushdown.h"
|
||||||
#include "ha_tzinfo.h"
|
#include "ha_tzinfo.h"
|
||||||
|
#include "ha_mcs_logging.h"
|
||||||
using namespace cal_impl_if;
|
using namespace cal_impl_if;
|
||||||
|
|
||||||
#include "aggregatecolumn.h"
|
#include "aggregatecolumn.h"
|
||||||
@@ -1881,7 +1883,8 @@ bool buildPredicateItem(Item_func* ifp, gp_walk_info* gwip)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (get_fe_conn_info_ptr() == NULL) {
|
if (get_fe_conn_info_ptr() == NULL)
|
||||||
|
{
|
||||||
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
||||||
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
||||||
}
|
}
|
||||||
@@ -2078,7 +2081,8 @@ bool buildPredicateItem(Item_func* ifp, gp_walk_info* gwip)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (udf->result_type() == STRING_RESULT)
|
if (udf->result_type() == STRING_RESULT)
|
||||||
gwip->rcWorkStack.push(new ConstantColumn(buf.ptr())); // XXX: constantcolumn from string = can it be NULL?
|
gwip->rcWorkStack.push(
|
||||||
|
new ConstantColumn(buf.ptr())); // XXX: constantcolumn from string = can it be NULL?
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
gwip->rcWorkStack.push(new ConstantColumn(buf.ptr(), ConstantColumn::NUM));
|
gwip->rcWorkStack.push(new ConstantColumn(buf.ptr(), ConstantColumn::NUM));
|
||||||
@@ -2796,7 +2800,8 @@ void setError(THD* thd, uint32_t errcode, string errmsg)
|
|||||||
thd->raise_error_printf(errcode, errmsg.c_str());
|
thd->raise_error_printf(errcode, errmsg.c_str());
|
||||||
|
|
||||||
// reset expressionID
|
// reset expressionID
|
||||||
if (get_fe_conn_info_ptr() == NULL) {
|
if (get_fe_conn_info_ptr() == NULL)
|
||||||
|
{
|
||||||
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
||||||
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
||||||
}
|
}
|
||||||
@@ -3606,7 +3611,8 @@ ReturnedColumn* buildBooleanConstantColumn(Item* item, gp_walk_info& gwi, bool&
|
|||||||
|
|
||||||
ArithmeticColumn* buildArithmeticColumn(Item_func* item, gp_walk_info& gwi, bool& nonSupport)
|
ArithmeticColumn* buildArithmeticColumn(Item_func* item, gp_walk_info& gwi, bool& nonSupport)
|
||||||
{
|
{
|
||||||
if (get_fe_conn_info_ptr() == NULL) {
|
if (get_fe_conn_info_ptr() == NULL)
|
||||||
|
{
|
||||||
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
||||||
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
||||||
}
|
}
|
||||||
@@ -3867,7 +3873,8 @@ ArithmeticColumn* buildArithmeticColumn(Item_func* item, gp_walk_info& gwi, bool
|
|||||||
|
|
||||||
ReturnedColumn* buildFunctionColumn(Item_func* ifp, gp_walk_info& gwi, bool& nonSupport, bool selectBetweenIn)
|
ReturnedColumn* buildFunctionColumn(Item_func* ifp, gp_walk_info& gwi, bool& nonSupport, bool selectBetweenIn)
|
||||||
{
|
{
|
||||||
if (get_fe_conn_info_ptr() == NULL) {
|
if (get_fe_conn_info_ptr() == NULL)
|
||||||
|
{
|
||||||
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
||||||
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
||||||
}
|
}
|
||||||
@@ -3960,7 +3967,8 @@ ReturnedColumn* buildFunctionColumn(Item_func* ifp, gp_walk_info& gwi, bool& non
|
|||||||
nonSupport = true;
|
nonSupport = true;
|
||||||
gwi.fatalParseError = true;
|
gwi.fatalParseError = true;
|
||||||
Message::Args args;
|
Message::Args args;
|
||||||
string info = funcName + " with argument count > " + std::to_string(std::numeric_limits<uint16_t>::max());
|
string info =
|
||||||
|
funcName + " with argument count > " + std::to_string(std::numeric_limits<uint16_t>::max());
|
||||||
args.add(info);
|
args.add(info);
|
||||||
gwi.parseErrorText = IDBErrorInfo::instance()->errorMsg(ERR_NON_SUPPORTED_FUNCTION, args);
|
gwi.parseErrorText = IDBErrorInfo::instance()->errorMsg(ERR_NON_SUPPORTED_FUNCTION, args);
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -4044,7 +4052,6 @@ ReturnedColumn* buildFunctionColumn(Item_func* ifp, gp_walk_info& gwi, bool& non
|
|||||||
// @todo. merge this logic to buildParseTree().
|
// @todo. merge this logic to buildParseTree().
|
||||||
if ((funcName == "if" && i == 0) || funcName == "xor")
|
if ((funcName == "if" && i == 0) || funcName == "xor")
|
||||||
{
|
{
|
||||||
|
|
||||||
// make sure the rcWorkStack is cleaned.
|
// make sure the rcWorkStack is cleaned.
|
||||||
gwi.clauseType = WHERE;
|
gwi.clauseType = WHERE;
|
||||||
sptp.reset(buildParseTree(ifp->arguments()[i], gwi, nonSupport));
|
sptp.reset(buildParseTree(ifp->arguments()[i], gwi, nonSupport));
|
||||||
@@ -4445,7 +4452,8 @@ ReturnedColumn* buildFunctionColumn(Item_func* ifp, gp_walk_info& gwi, bool& non
|
|||||||
|
|
||||||
FunctionColumn* buildCaseFunction(Item_func* item, gp_walk_info& gwi, bool& nonSupport)
|
FunctionColumn* buildCaseFunction(Item_func* item, gp_walk_info& gwi, bool& nonSupport)
|
||||||
{
|
{
|
||||||
if (get_fe_conn_info_ptr() == NULL) {
|
if (get_fe_conn_info_ptr() == NULL)
|
||||||
|
{
|
||||||
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
||||||
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
||||||
}
|
}
|
||||||
@@ -4872,7 +4880,8 @@ ReturnedColumn* buildAggregateColumn(Item* item, gp_walk_info& gwi)
|
|||||||
vector<SRCP> orderCols;
|
vector<SRCP> orderCols;
|
||||||
ConstArgParam constArgParam;
|
ConstArgParam constArgParam;
|
||||||
|
|
||||||
if (get_fe_conn_info_ptr() == NULL) {
|
if (get_fe_conn_info_ptr() == NULL)
|
||||||
|
{
|
||||||
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
set_fe_conn_info_ptr((void*)new cal_connection_info());
|
||||||
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
thd_set_ha_data(current_thd, mcs_hton, get_fe_conn_info_ptr());
|
||||||
}
|
}
|
||||||
@@ -5533,8 +5542,6 @@ because it has multiple arguments.";
|
|||||||
return ac;
|
return ac;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void addIntervalArgs(gp_walk_info* gwip, Item_func* ifp, FunctionParm& functionParms)
|
void addIntervalArgs(gp_walk_info* gwip, Item_func* ifp, FunctionParm& functionParms)
|
||||||
{
|
{
|
||||||
string funcName = ifp->func_name();
|
string funcName = ifp->func_name();
|
||||||
@@ -5902,7 +5909,10 @@ void gp_walk(const Item* item, void* arg)
|
|||||||
|
|
||||||
// bug 3137. If filter constant like 1=0, put it to ptWorkStack
|
// bug 3137. If filter constant like 1=0, put it to ptWorkStack
|
||||||
// MariaDB bug 750. Breaks if compare is an argument to a function.
|
// MariaDB bug 750. Breaks if compare is an argument to a function.
|
||||||
// if ((int32_t)gwip->rcWorkStack.size() <= (gwip->rcBookMarkStack.empty() ? 0
|
// if ((int32_t)gwip->rcWorkStack.size() <=
|
||||||
|
//(gwip->rcBookMarkStack.empty()
|
||||||
|
//?
|
||||||
|
// 0
|
||||||
//: gwip->rcBookMarkStack.top())
|
//: gwip->rcBookMarkStack.top())
|
||||||
// && isPredicateFunction(ifp, gwip))
|
// && isPredicateFunction(ifp, gwip))
|
||||||
if (isPredicateFunction(ifp, gwip))
|
if (isPredicateFunction(ifp, gwip))
|
||||||
@@ -6183,7 +6193,8 @@ void gp_walk(const Item* item, void* arg)
|
|||||||
SimpleColumn* sc = dynamic_cast<SimpleColumn*>(operand);
|
SimpleColumn* sc = dynamic_cast<SimpleColumn*>(operand);
|
||||||
if (sc)
|
if (sc)
|
||||||
{
|
{
|
||||||
gwip->scsp.reset(sc->clone()); // We need to clone else sc gets double deleted. This code is rarely executed so the cost is acceptable.
|
gwip->scsp.reset(sc->clone()); // We need to clone else sc gets double deleted. This code is
|
||||||
|
// rarely executed so the cost is acceptable.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -7086,6 +7097,18 @@ int processWhere(SELECT_LEX& select_lex, gp_walk_info& gwi, SCSEP& csep, const s
|
|||||||
filters = extractCommonLeafConjunctionsToRoot(filters);
|
filters = extractCommonLeafConjunctionsToRoot(filters);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint64_t limit = get_max_in_limit_query_length(gwi.thd);
|
||||||
|
|
||||||
|
if (filters && !checkFiltersLimit(filters, limit))
|
||||||
|
{
|
||||||
|
gwi.fatalParseError = true;
|
||||||
|
setError(gwi.thd, ER_CHECK_NOT_IMPLEMENTED,
|
||||||
|
"long in clauses. Query exceeds max_in_limit_query_length threshold: consider changing the "
|
||||||
|
"value via SET @var_name := value;",
|
||||||
|
gwi);
|
||||||
|
return ER_CHECK_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
// Append outer join filters at the end of inner join filters.
|
// Append outer join filters at the end of inner join filters.
|
||||||
// JLF_ExecPlanToJobList::walkTree processes ParseTree::left
|
// JLF_ExecPlanToJobList::walkTree processes ParseTree::left
|
||||||
// before ParseTree::right which is what we intend to do in the
|
// before ParseTree::right which is what we intend to do in the
|
||||||
@@ -7361,8 +7384,7 @@ void buildInToExistsFilter(gp_walk_info& gwi, SELECT_LEX& select_lex)
|
|||||||
* error id as an int
|
* error id as an int
|
||||||
***********************************************************/
|
***********************************************************/
|
||||||
int getSelectPlan(gp_walk_info& gwi, SELECT_LEX& select_lex, SCSEP& csep, bool isUnion,
|
int getSelectPlan(gp_walk_info& gwi, SELECT_LEX& select_lex, SCSEP& csep, bool isUnion,
|
||||||
bool isSelectHandlerTop, bool isSelectLexUnit,
|
bool isSelectHandlerTop, bool isSelectLexUnit, const std::vector<COND*>& condStack)
|
||||||
const std::vector<COND*>& condStack)
|
|
||||||
{
|
{
|
||||||
#ifdef DEBUG_WALK_COND
|
#ifdef DEBUG_WALK_COND
|
||||||
cerr << "getSelectPlan()" << endl;
|
cerr << "getSelectPlan()" << endl;
|
||||||
@@ -7390,8 +7412,7 @@ int getSelectPlan(gp_walk_info& gwi, SELECT_LEX& select_lex, SCSEP& csep, bool i
|
|||||||
CalpontSelectExecutionPlan::SelectList derivedTbList;
|
CalpontSelectExecutionPlan::SelectList derivedTbList;
|
||||||
// @bug 1796. Remember table order on the FROM list.
|
// @bug 1796. Remember table order on the FROM list.
|
||||||
gwi.clauseType = FROM;
|
gwi.clauseType = FROM;
|
||||||
if ((rc = processFrom(isUnion, select_lex, gwi, csep, isSelectHandlerTop,
|
if ((rc = processFrom(isUnion, select_lex, gwi, csep, isSelectHandlerTop, isSelectLexUnit)))
|
||||||
isSelectLexUnit)))
|
|
||||||
{
|
{
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
@@ -7855,7 +7876,8 @@ int getSelectPlan(gp_walk_info& gwi, SELECT_LEX& select_lex, SCSEP& csep, bool i
|
|||||||
gwi.returnedCols[i]->hasAggregate(true);
|
gwi.returnedCols[i]->hasAggregate(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
gwi.returnedCols[i]->resultType(CalpontSystemCatalog::ColType::convertUnionColType(coltypes, unionedTypeRc));
|
gwi.returnedCols[i]->resultType(
|
||||||
|
CalpontSystemCatalog::ColType::convertUnionColType(coltypes, unionedTypeRc));
|
||||||
|
|
||||||
if (unionedTypeRc != 0)
|
if (unionedTypeRc != 0)
|
||||||
{
|
{
|
||||||
@@ -9690,7 +9712,8 @@ int getGroupPlan(gp_walk_info& gwi, SELECT_LEX& select_lex, SCSEP& csep, cal_gro
|
|||||||
gwi.returnedCols[i]->hasAggregate(true);
|
gwi.returnedCols[i]->hasAggregate(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
gwi.returnedCols[i]->resultType(CalpontSystemCatalog::ColType::convertUnionColType(coltypes, unionedTypeRc));
|
gwi.returnedCols[i]->resultType(
|
||||||
|
CalpontSystemCatalog::ColType::convertUnionColType(coltypes, unionedTypeRc));
|
||||||
|
|
||||||
if (unionedTypeRc != 0)
|
if (unionedTypeRc != 0)
|
||||||
{
|
{
|
||||||
|
@@ -207,17 +207,22 @@ static MYSQL_THDVAR_STR(cmapi_host, PLUGIN_VAR_NOCMDOPT|PLUGIN_VAR_MEMALLOC, "CM
|
|||||||
static MYSQL_THDVAR_STR(cmapi_version, PLUGIN_VAR_NOCMDOPT | PLUGIN_VAR_MEMALLOC, "CMAPI version", NULL, NULL,
|
static MYSQL_THDVAR_STR(cmapi_version, PLUGIN_VAR_NOCMDOPT | PLUGIN_VAR_MEMALLOC, "CMAPI version", NULL, NULL,
|
||||||
"0.4.0");
|
"0.4.0");
|
||||||
|
|
||||||
static MYSQL_THDVAR_STR(cmapi_key, PLUGIN_VAR_NOCMDOPT|PLUGIN_VAR_MEMALLOC, "CMAPI key", NULL, NULL,
|
static MYSQL_THDVAR_STR(cmapi_key, PLUGIN_VAR_NOCMDOPT | PLUGIN_VAR_MEMALLOC, "CMAPI key", NULL, NULL, "");
|
||||||
"");
|
static MYSQL_THDVAR_STR(pron, PLUGIN_VAR_NOCMDOPT | PLUGIN_VAR_MEMALLOC, "Debug options json dictionary",
|
||||||
static MYSQL_THDVAR_STR(pron, PLUGIN_VAR_NOCMDOPT|PLUGIN_VAR_MEMALLOC, "Debug options json dictionary", NULL, NULL, "");
|
NULL, NULL, "");
|
||||||
|
|
||||||
static MYSQL_THDVAR_ULONGLONG(cmapi_port, PLUGIN_VAR_NOCMDOPT, "CMAPI port", NULL,
|
static MYSQL_THDVAR_ULONGLONG(cmapi_port, PLUGIN_VAR_NOCMDOPT, "CMAPI port", NULL, NULL, 8640, 100, 65356, 1);
|
||||||
NULL, 8640, 100, 65356, 1);
|
|
||||||
|
|
||||||
static MYSQL_THDVAR_STR(s3_key, PLUGIN_VAR_NOCMDOPT|PLUGIN_VAR_MEMALLOC, "S3 Authentication Key ", NULL, NULL, "");
|
static MYSQL_THDVAR_STR(s3_key, PLUGIN_VAR_NOCMDOPT | PLUGIN_VAR_MEMALLOC, "S3 Authentication Key ", NULL,
|
||||||
static MYSQL_THDVAR_STR(s3_secret, PLUGIN_VAR_NOCMDOPT|PLUGIN_VAR_MEMALLOC, "S3 Authentication Secret", NULL, NULL, "");
|
NULL, "");
|
||||||
|
static MYSQL_THDVAR_STR(s3_secret, PLUGIN_VAR_NOCMDOPT | PLUGIN_VAR_MEMALLOC, "S3 Authentication Secret",
|
||||||
|
NULL, NULL, "");
|
||||||
static MYSQL_THDVAR_STR(s3_region, PLUGIN_VAR_NOCMDOPT | PLUGIN_VAR_MEMALLOC, "S3 region", NULL, NULL, "");
|
static MYSQL_THDVAR_STR(s3_region, PLUGIN_VAR_NOCMDOPT | PLUGIN_VAR_MEMALLOC, "S3 region", NULL, NULL, "");
|
||||||
|
|
||||||
|
static MYSQL_THDVAR_ULONG(max_in_limit_query_length, PLUGIN_VAR_RQCMDARG,
|
||||||
|
"The maximum length of the entries in the IN uery clause.", NULL, NULL, 6000, 1,
|
||||||
|
~0U, 1);
|
||||||
|
|
||||||
st_mysql_sys_var* mcs_system_variables[] = {MYSQL_SYSVAR(compression_type),
|
st_mysql_sys_var* mcs_system_variables[] = {MYSQL_SYSVAR(compression_type),
|
||||||
MYSQL_SYSVAR(fe_conn_info_ptr),
|
MYSQL_SYSVAR(fe_conn_info_ptr),
|
||||||
MYSQL_SYSVAR(original_optimizer_flags),
|
MYSQL_SYSVAR(original_optimizer_flags),
|
||||||
@@ -258,6 +263,7 @@ st_mysql_sys_var* mcs_system_variables[] = {MYSQL_SYSVAR(compression_type),
|
|||||||
MYSQL_SYSVAR(s3_secret),
|
MYSQL_SYSVAR(s3_secret),
|
||||||
MYSQL_SYSVAR(s3_region),
|
MYSQL_SYSVAR(s3_region),
|
||||||
MYSQL_SYSVAR(pron),
|
MYSQL_SYSVAR(pron),
|
||||||
|
MYSQL_SYSVAR(max_in_limit_query_length),
|
||||||
NULL};
|
NULL};
|
||||||
|
|
||||||
st_mysql_show_var mcs_status_variables[] = {{"columnstore_version", (char*)&cs_version, SHOW_CHAR},
|
st_mysql_show_var mcs_status_variables[] = {{"columnstore_version", (char*)&cs_version, SHOW_CHAR},
|
||||||
@@ -271,8 +277,10 @@ void* get_fe_conn_info_ptr(THD* thd)
|
|||||||
|
|
||||||
void set_fe_conn_info_ptr(void* ptr, THD* thd)
|
void set_fe_conn_info_ptr(void* ptr, THD* thd)
|
||||||
{
|
{
|
||||||
if (thd == NULL) thd = current_thd;
|
if (thd == NULL)
|
||||||
if (thd == NULL) return;
|
thd = current_thd;
|
||||||
|
if (thd == NULL)
|
||||||
|
return;
|
||||||
|
|
||||||
THDVAR(thd, fe_conn_info_ptr) = (uint64_t)(ptr);
|
THDVAR(thd, fe_conn_info_ptr) = (uint64_t)(ptr);
|
||||||
}
|
}
|
||||||
@@ -651,3 +659,12 @@ void set_s3_region(THD* thd, char* value)
|
|||||||
{
|
{
|
||||||
THDVAR(thd, s3_region) = value;
|
THDVAR(thd, s3_region) = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ulong get_max_in_limit_query_length(THD* thd)
|
||||||
|
{
|
||||||
|
return (thd == NULL) ? 0 : THDVAR(thd, max_in_limit_query_length);
|
||||||
|
}
|
||||||
|
void set_max_in_limit_query_length(THD* thd, ulong value)
|
||||||
|
{
|
||||||
|
THDVAR(thd, max_in_limit_query_length) = value;
|
||||||
|
}
|
@@ -176,3 +176,6 @@ void set_s3_region(THD* thd, char* value);
|
|||||||
|
|
||||||
const char* get_pron(THD* thd);
|
const char* get_pron(THD* thd);
|
||||||
void set_pron(THD* thd, char* value);
|
void set_pron(THD* thd, char* value);
|
||||||
|
|
||||||
|
ulong get_max_in_limit_query_length(THD* thd);
|
||||||
|
void set_max_in_limit_query_length(THD* thd, ulong value);
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user