#include "mkql_nop.h" #include namespace NKikimr { namespace NMiniKQL { IComputationNode* WrapNop(TCallable& callable, const TComputationNodeFactoryContext& ctx) { MKQL_ENSURE(callable.GetInputsCount() == 1, "Expected 1 arg"); return LocateNode(ctx.NodeLocator, callable, 0); } } }