From 60d8681b70c6e25194ba62aad4468864e2582f22 Mon Sep 17 00:00:00 2001 From: uzhastik Date: Thu, 3 Oct 2024 17:03:55 +0300 Subject: [PATCH] add lost pragma once (#10023) --- .../yql/dq/actors/compute/dq_sync_compute_actor_base.h | 2 ++ ydb/library/yql/dq/actors/spilling/channel_storage_actor.h | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ydb/library/yql/dq/actors/compute/dq_sync_compute_actor_base.h b/ydb/library/yql/dq/actors/compute/dq_sync_compute_actor_base.h index 3d3a78293aa9..23a08ea6dc2d 100644 --- a/ydb/library/yql/dq/actors/compute/dq_sync_compute_actor_base.h +++ b/ydb/library/yql/dq/actors/compute/dq_sync_compute_actor_base.h @@ -1,3 +1,5 @@ +#pragma once + #include "dq_compute_actor_impl.h" #include "dq_compute_actor_async_input_helper.h" #include diff --git a/ydb/library/yql/dq/actors/spilling/channel_storage_actor.h b/ydb/library/yql/dq/actors/spilling/channel_storage_actor.h index 3d7dfb6536d0..3396ccaf5d76 100644 --- a/ydb/library/yql/dq/actors/spilling/channel_storage_actor.h +++ b/ydb/library/yql/dq/actors/spilling/channel_storage_actor.h @@ -1,3 +1,5 @@ +#pragma once + #include "spilling_counters.h" #include @@ -55,4 +57,4 @@ class IDqChannelStorageActor IDqChannelStorageActor* CreateDqChannelStorageActor(TTxId txId, ui64 channelId, TWakeUpCallback&& wakeUpCallback, TErrorCallback&& errorCallback, TIntrusivePtr spillingTaskCounters, NActors::TActorSystem* actorSystem); -} // namespace NYql::NDq \ No newline at end of file +} // namespace NYql::NDq