diff options
author | tobo <tobo@yandex-team.com> | 2022-09-09 18:09:35 +0300 |
---|---|---|
committer | tobo <tobo@yandex-team.com> | 2022-09-09 18:09:35 +0300 |
commit | 53fe234c39b8b092d5b1e25088a54ddde3de39a1 (patch) | |
tree | 8e7959ab7be5d1c729b5c78e044f46c32ea505ac | |
parent | cec65af20e43dc2b4d1ce641bdd8046f5204f28f (diff) | |
download | ydb-53fe234c39b8b092d5b1e25088a54ddde3de39a1.tar.gz |
prepare to split hash.h into hash.h and multi_hash_map.h
-rw-r--r-- | ydb/core/blob_depot/data.h | 2 | ||||
-rw-r--r-- | ydb/core/kesus/tablet/quoter_resource_tree.h | 1 | ||||
-rw-r--r-- | ydb/core/tablet_flat/flat_load_blob_queue.h | 2 | ||||
-rw-r--r-- | ydb/core/ymq/actor/local_rate_limiter_allocator.cpp | 2 | ||||
-rw-r--r-- | ydb/core/ymq/actor/queue_leader.h | 1 | ||||
-rw-r--r-- | ydb/core/ymq/actor/service.h | 1 | ||||
-rw-r--r-- | ydb/library/yql/dq/state/dq_state_load_plan.cpp | 2 | ||||
-rw-r--r-- | ydb/library/yql/utils/hash.h | 1 | ||||
-rw-r--r-- | ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/read_session.h | 1 |
9 files changed, 11 insertions, 2 deletions
diff --git a/ydb/core/blob_depot/data.h b/ydb/core/blob_depot/data.h index 619506dcf07..2eafebd6b2d 100644 --- a/ydb/core/blob_depot/data.h +++ b/ydb/core/blob_depot/data.h @@ -3,6 +3,8 @@ #include "defs.h" #include "blob_depot_tablet.h" +#include <util/generic/hash_multi_map.h> + namespace NKikimr::NBlobDepot { class TBlobDepot::TData { diff --git a/ydb/core/kesus/tablet/quoter_resource_tree.h b/ydb/core/kesus/tablet/quoter_resource_tree.h index da229722059..5b05e42f460 100644 --- a/ydb/core/kesus/tablet/quoter_resource_tree.h +++ b/ydb/core/kesus/tablet/quoter_resource_tree.h @@ -9,6 +9,7 @@ #include <util/datetime/base.h> #include <util/generic/hash.h> +#include <util/generic/hash_multi_map.h> #include <util/generic/hash_set.h> #include <util/generic/ptr.h> #include <util/generic/string.h> diff --git a/ydb/core/tablet_flat/flat_load_blob_queue.h b/ydb/core/tablet_flat/flat_load_blob_queue.h index 5ee5afdb880..1f97b293280 100644 --- a/ydb/core/tablet_flat/flat_load_blob_queue.h +++ b/ydb/core/tablet_flat/flat_load_blob_queue.h @@ -4,7 +4,7 @@ #include <ydb/core/base/blobstorage.h> #include <util/generic/deque.h> -#include <util/generic/hash.h> +#include <util/generic/hash_multi_map.h> namespace NKikimr { namespace NTabletFlatExecutor { diff --git a/ydb/core/ymq/actor/local_rate_limiter_allocator.cpp b/ydb/core/ymq/actor/local_rate_limiter_allocator.cpp index 470665b7657..2fde20e8260 100644 --- a/ydb/core/ymq/actor/local_rate_limiter_allocator.cpp +++ b/ydb/core/ymq/actor/local_rate_limiter_allocator.cpp @@ -2,7 +2,7 @@ #include <ydb/core/base/quoter.h> -#include <util/generic/hash.h> +#include <util/generic/hash_multi_map.h> #include <util/system/guard.h> #include <util/system/spinlock.h> diff --git a/ydb/core/ymq/actor/queue_leader.h b/ydb/core/ymq/actor/queue_leader.h index 323ba223414..aace8e884e9 100644 --- a/ydb/core/ymq/actor/queue_leader.h +++ b/ydb/core/ymq/actor/queue_leader.h @@ -14,6 +14,7 @@ #include <library/cpp/actors/core/actor_bootstrapped.h> #include <library/cpp/monlib/dynamic_counters/counters.h> +#include <util/generic/hash_multi_map.h> #include <util/generic/guid.h> #include <util/generic/ptr.h> #include <util/generic/queue.h> diff --git a/ydb/core/ymq/actor/service.h b/ydb/core/ymq/actor/service.h index 915f7813a40..18fe2d55d70 100644 --- a/ydb/core/ymq/actor/service.h +++ b/ydb/core/ymq/actor/service.h @@ -13,6 +13,7 @@ #include <library/cpp/actors/core/actor_bootstrapped.h> #include <util/generic/hash.h> +#include <util/generic/hash_multi_map.h> #include <util/generic/ptr.h> #include <library/cpp/logger/log.h> diff --git a/ydb/library/yql/dq/state/dq_state_load_plan.cpp b/ydb/library/yql/dq/state/dq_state_load_plan.cpp index 80ff01e3943..605b7ff5eaf 100644 --- a/ydb/library/yql/dq/state/dq_state_load_plan.cpp +++ b/ydb/library/yql/dq/state/dq_state_load_plan.cpp @@ -5,6 +5,8 @@ #include <ydb/library/yql/providers/pq/task_meta/task_meta.h> #include <util/digest/multi.h> +#include <util/generic/hash.h> +#include <util/generic/hash_multi_map.h> #include <util/generic/hash_set.h> #include <util/string/builder.h> diff --git a/ydb/library/yql/utils/hash.h b/ydb/library/yql/utils/hash.h index e67da789fd9..45cd95b777a 100644 --- a/ydb/library/yql/utils/hash.h +++ b/ydb/library/yql/utils/hash.h @@ -2,6 +2,7 @@ #include <unordered_set> #include <unordered_map> #include <util/generic/hash.h> +#include <util/generic/hash_multi_map.h> #include <util/generic/hash_set.h> namespace NYql { diff --git a/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/read_session.h b/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/read_session.h index 649fc817e67..a51db566eae 100644 --- a/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/read_session.h +++ b/ydb/public/sdk/cpp/client/ydb_persqueue_core/impl/read_session.h @@ -13,6 +13,7 @@ #include <util/digest/numeric.h> #include <util/generic/hash.h> +#include <util/generic/hash_multi_map.h> #include <util/system/condvar.h> #include <atomic> |