@@ -76,13 +76,12 @@ class TDqAsyncComputeActor : public TDqComputeActorBase<TDqAsyncComputeActor, TC
7676
7777 TDqAsyncComputeActor (const TActorId& executerId, const TTxId& txId, NDqProto::TDqTask* task,
7878 IDqAsyncIoFactory::TPtr asyncIoFactory,
79- const NKikimr::NMiniKQL::IFunctionRegistry* functionRegistry,
8079 const TComputeRuntimeSettings& settings, const TComputeMemoryLimits& memoryLimits,
8180 const NTaskRunnerActor::ITaskRunnerActorFactory::TPtr& taskRunnerActorFactory,
8281 const ::NMonitoring::TDynamicCounterPtr& taskCounters,
8382 const TActorId& quoterServiceActorId,
8483 bool ownCounters)
85- : TBase(executerId, txId, task, std::move(asyncIoFactory), functionRegistry, settings, memoryLimits, /* ownMemoryQuota = */ false , false , taskCounters)
84+ : TBase(executerId, txId, task, std::move(asyncIoFactory), settings, memoryLimits, /* ownMemoryQuota = */ false , false , taskCounters)
8685 , TaskRunnerActorFactory(taskRunnerActorFactory)
8786 , ReadyToCheckpointFlag(false )
8887 , SentStatsRequest(false )
@@ -995,15 +994,14 @@ class TDqAsyncComputeActor : public TDqComputeActorBase<TDqAsyncComputeActor, TC
995994
996995IActor* CreateDqAsyncComputeActor (const TActorId& executerId, const TTxId& txId, NYql::NDqProto::TDqTask* task,
997996 IDqAsyncIoFactory::TPtr asyncIoFactory,
998- const NKikimr::NMiniKQL::IFunctionRegistry* functionRegistry,
999997 const TComputeRuntimeSettings& settings, const TComputeMemoryLimits& memoryLimits,
1000998 const NTaskRunnerActor::ITaskRunnerActorFactory::TPtr& taskRunnerActorFactory,
1001999 ::NMonitoring::TDynamicCounterPtr taskCounters,
10021000 const TActorId& quoterServiceActorId,
10031001 bool ownCounters)
10041002{
10051003 return new TDqAsyncComputeActor (executerId, txId, task, std::move (asyncIoFactory),
1006- functionRegistry, settings, memoryLimits, taskRunnerActorFactory, taskCounters, quoterServiceActorId, ownCounters);
1004+ settings, memoryLimits, taskRunnerActorFactory, taskCounters, quoterServiceActorId, ownCounters);
10071005}
10081006
10091007} // namespace NDq
0 commit comments