@@ -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 )
@@ -996,15 +995,14 @@ class TDqAsyncComputeActor : public TDqComputeActorBase<TDqAsyncComputeActor, TC
996995
997996IActor* CreateDqAsyncComputeActor (const TActorId& executerId, const TTxId& txId, NYql::NDqProto::TDqTask* task,
998997 IDqAsyncIoFactory::TPtr asyncIoFactory,
999- const NKikimr::NMiniKQL::IFunctionRegistry* functionRegistry,
1000998 const TComputeRuntimeSettings& settings, const TComputeMemoryLimits& memoryLimits,
1001999 const NTaskRunnerActor::ITaskRunnerActorFactory::TPtr& taskRunnerActorFactory,
10021000 ::NMonitoring::TDynamicCounterPtr taskCounters,
10031001 const TActorId& quoterServiceActorId,
10041002 bool ownCounters)
10051003{
10061004 return new TDqAsyncComputeActor (executerId, txId, task, std::move (asyncIoFactory),
1007- functionRegistry, settings, memoryLimits, taskRunnerActorFactory, taskCounters, quoterServiceActorId, ownCounters);
1005+ settings, memoryLimits, taskRunnerActorFactory, taskCounters, quoterServiceActorId, ownCounters);
10081006}
10091007
10101008} // namespace NDq
0 commit comments