@@ -75,13 +75,12 @@ class TDqAsyncComputeActor : public TDqComputeActorBase<TDqAsyncComputeActor, TC
7575
7676 TDqAsyncComputeActor (const TActorId& executerId, const TTxId& txId, NDqProto::TDqTask* task,
7777 IDqAsyncIoFactory::TPtr asyncIoFactory,
78- const NKikimr::NMiniKQL::IFunctionRegistry* functionRegistry,
7978 const TComputeRuntimeSettings& settings, const TComputeMemoryLimits& memoryLimits,
8079 const NTaskRunnerActor::ITaskRunnerActorFactory::TPtr& taskRunnerActorFactory,
8180 const ::NMonitoring::TDynamicCounterPtr& taskCounters,
8281 const TActorId& quoterServiceActorId,
8382 bool ownCounters)
84- : TBase(executerId, txId, task, std::move(asyncIoFactory), functionRegistry, settings, memoryLimits, /* ownMemoryQuota = */ false , false , taskCounters)
83+ : TBase(executerId, txId, task, std::move(asyncIoFactory), settings, memoryLimits, /* ownMemoryQuota = */ false , false , taskCounters)
8584 , TaskRunnerActorFactory(taskRunnerActorFactory)
8685 , ReadyToCheckpointFlag(false )
8786 , SentStatsRequest(false )
@@ -976,15 +975,14 @@ class TDqAsyncComputeActor : public TDqComputeActorBase<TDqAsyncComputeActor, TC
976975
977976IActor* CreateDqAsyncComputeActor (const TActorId& executerId, const TTxId& txId, NYql::NDqProto::TDqTask* task,
978977 IDqAsyncIoFactory::TPtr asyncIoFactory,
979- const NKikimr::NMiniKQL::IFunctionRegistry* functionRegistry,
980978 const TComputeRuntimeSettings& settings, const TComputeMemoryLimits& memoryLimits,
981979 const NTaskRunnerActor::ITaskRunnerActorFactory::TPtr& taskRunnerActorFactory,
982980 ::NMonitoring::TDynamicCounterPtr taskCounters,
983981 const TActorId& quoterServiceActorId,
984982 bool ownCounters)
985983{
986984 return new TDqAsyncComputeActor (executerId, txId, task, std::move (asyncIoFactory),
987- functionRegistry, settings, memoryLimits, taskRunnerActorFactory, taskCounters, quoterServiceActorId, ownCounters);
985+ settings, memoryLimits, taskRunnerActorFactory, taskCounters, quoterServiceActorId, ownCounters);
988986}
989987
990988} // namespace NDq
0 commit comments