blob: 8c2d4caadc1b5163e045253c7ac4de8b59923874 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <yql/essentials/minikql/computation/mkql_computation_node.h>
namespace NKikimr::NMiniKQL {
IComputationNode* TimeOrderRecover(const TComputationNodeFactoryContext& ctx,
TRuntimeNode inputFlow,
TRuntimeNode inputRowArg,
TRuntimeNode rowTime,
TRuntimeNode inputRowColumnCount,
TRuntimeNode outOfOrderColumnIndex,
TRuntimeNode delay,
TRuntimeNode ahead,
TRuntimeNode rowLimit);
} //namespace NKikimr::NMiniKQL
|