aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/comp_nodes/mkql_wide_top_sort.h
blob: fbdf572b6be1210650d6401a11ee067d0807c875 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <yql/essentials/minikql/computation/mkql_computation_node.h>

namespace NKikimr {
namespace NMiniKQL {

IComputationNode* WrapWideTop(TCallable& callable, const TComputationNodeFactoryContext& ctx);
IComputationNode* WrapWideTopSort(TCallable& callable, const TComputationNodeFactoryContext& ctx);
IComputationNode* WrapWideSort(TCallable& callable, const TComputationNodeFactoryContext& ctx);

}
}