1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +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

@ -96,7 +96,7 @@ struct SubQueryChainHolder
class WhereSubQuery : public SubQuery
{
public:
WhereSubQuery(gp_walk_info& gwip) : SubQuery(gwip), fSub(NULL), fFunc(NULL)
WhereSubQuery(gp_walk_info& gwip) : SubQuery(gwip), fSub(nullptr), fFunc(nullptr)
{
}
WhereSubQuery(gp_walk_info& gwip, const execplan::SRCP& column, Item_subselect* sub, Item_func* func)
@ -175,7 +175,7 @@ class InSub : public WhereSubQuery
InSub(const InSub& rhs);
~InSub() override;
execplan::ParseTree* transform() override;
void handleFunc(gp_walk_info* gwip, Item_func* func);
void handleFunc(gp_walk_info* gwip, Item_func* func) override;
void handleNot() override;
};