aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/comp_nodes/mkql_pickle.h
blob: bdebb73222b908ebf96dceca62a986eac8ef75a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include <yql/essentials/minikql/computation/mkql_computation_node.h>

namespace NKikimr {
namespace NMiniKQL {

IComputationNode* WrapPickle(TCallable& callable, const TComputationNodeFactoryContext& ctx);
IComputationNode* WrapStablePickle(TCallable& callable, const TComputationNodeFactoryContext& ctx);
IComputationNode* WrapUnpickle(TCallable& callable, const TComputationNodeFactoryContext& ctx);
IComputationNode* WrapAscending(TCallable& callable, const TComputationNodeFactoryContext& ctx);
IComputationNode* WrapDescending(TCallable& callable, const TComputationNodeFactoryContext& ctx);

}
}