1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

more overrides

This commit is contained in:
Aleksei Antipovskii
2024-09-25 00:42:20 +02:00
committed by Leonid Fedorov
parent a4c1e2cbcb
commit cbf4fef47c
5 changed files with 22 additions and 21 deletions

View File

@ -203,7 +203,7 @@ struct gp_walk_info
, condPush(false)
, dropCond(false)
, internalDecimalScale(4)
, thd(0)
, thd(nullptr)
, subSelectType(uint64_t(-1))
, subQuery(nullptr)
, clauseType(INIT)
@ -250,7 +250,8 @@ struct cal_table_info
FROM_FILE
};
cal_table_info() : tpl_ctx(0), c(0), msTablePtr(0), conn_hndl(0), condInfo(0), moreRows(false)
cal_table_info()
: tpl_ctx(nullptr), c(0), msTablePtr(nullptr), conn_hndl(nullptr), condInfo(nullptr), moreRows(false)
{
}
sm::sp_cpsm_tplh_t tpl_ctx;
@ -268,12 +269,12 @@ struct cal_table_info
struct cal_group_info
{
cal_group_info()
: groupByFields(0)
, groupByTables(0)
, groupByWhere(0)
, groupByGroup(0)
, groupByOrder(0)
, groupByHaving(0)
: groupByFields(nullptr)
, groupByTables(nullptr)
, groupByWhere(nullptr)
, groupByGroup(nullptr)
, groupByOrder(nullptr)
, groupByHaving(nullptr)
, groupByDistinct(false)
{
}