Skip to content

Commit

Permalink
fix include file format error
Browse files Browse the repository at this point in the history
  • Loading branch information
Aed-p authored and Shanfeng Pang committed Apr 16, 2024
1 parent e31254f commit 0f4d5eb
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions src/VectorIndex/Cache/PKCacheManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
#include <functional>
#include <optional>

#include "../../Columns/IColumn.h"
#include "../../Common/CacheBase.h"
#include "../../Storages/KeyDescription.h"
#include <Columns/IColumn.h>
#include <Common/CacheBase.h>
#include <Storages/KeyDescription.h>

namespace DB
{
Expand Down
4 changes: 2 additions & 2 deletions src/VectorIndex/Cache/VICacheManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
#include <memory>
#include <string>

#include "../../Common/LRUResourceCache.h"
#include "VICacheObject.h"
#include <Common/LRUResourceCache.h>
#include <VectorIndex/Cache/VICacheObject.h>

namespace std
{
Expand Down
4 changes: 2 additions & 2 deletions src/VectorIndex/Cache/VICacheObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
#include <memory>
#include <filesystem>

#include "../../../base/base/types.h"
#include <base/types.h>

#include "../Common/VICommon.h"
#include <VectorIndex/Common/VICommon.h>

namespace fs = std::filesystem;

Expand Down
4 changes: 2 additions & 2 deletions src/VectorIndex/Utils/CommonUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

#pragma once

#include "../../../base/base/types.h"
#include "../../../base/poco/Foundation/include/Poco/String.h"
#include <base/types.h>
#include <Poco/String.h>

namespace Search
{
Expand Down
12 changes: 6 additions & 6 deletions src/VectorIndex/Utils/VIUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@

#pragma once

#include "../../Common/logger_useful.h"
#include "../../IO/copyData.h"
#include "../../Storages/MergeTree/MergeTreeDataPartChecksum.h"
#include "../../Storages/StorageInMemoryMetadata.h"
#include <Common/logger_useful.h>
#include <IO/copyData.h>
#include <Storages/MergeTree/MergeTreeDataPartChecksum.h>
#include <Storages/StorageInMemoryMetadata.h>

#include "../Common/VICommon.h"
#include "../Storages/VIDescriptions.h"
#include <VectorIndex/Common/VICommon.h>
#include <VectorIndex/Storages/VIDescriptions.h>

#pragma GCC diagnostic ignored "-Wunused-function"

Expand Down
6 changes: 3 additions & 3 deletions src/VectorIndex/Utils/VSUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
*/

#pragma once
#include "../../Storages/MergeTree/MergeTreeData.h"
#include "../../Storages/MergeTree/RangesInDataPart.h"
#include "../Storages/MergeTreeVSManager.h"
#include <Storages/MergeTree/MergeTreeData.h>
#include <Storages/MergeTree/RangesInDataPart.h>
#include <VectorIndex/Storages/MergeTreeVSManager.h>

namespace DB
{
Expand Down

0 comments on commit 0f4d5eb

Please sign in to comment.