Merge pull request #46422 from evillique/move-sources

Move MongoDB and PostgreSQL sources to Sources folder
This commit is contained in:
Nikolay Degterinsky 2023-02-16 10:51:45 +01:00 committed by GitHub
commit ebec5b8050
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
#pragma once
#include <Processors/Transforms/MongoDBSource.h>
#include <Processors/Sources/MongoDBSource.h>
#include <Core/Block.h>
#include "DictionaryStructure.h"

View File

@ -8,7 +8,7 @@
#if USE_LIBPQXX
#include <Columns/ColumnString.h>
#include <DataTypes/DataTypeString.h>
#include <Processors/Transforms/PostgreSQLSource.h>
#include <Processors/Sources/PostgreSQLSource.h>
#include "readInvalidateQuery.h"
#include <Interpreters/Context.h>
#include <QueryPipeline/QueryPipeline.h>

View File

@ -4,7 +4,7 @@
#include <Common/setThreadName.h>
#include <Parsers/ASTTableOverrides.h>
#include <Processors/Transforms/PostgreSQLSource.h>
#include <Processors/Sources/PostgreSQLSource.h>
#include <Processors/Executors/CompletedPipelineExecutor.h>
#include <QueryPipeline/QueryPipeline.h>
#include <QueryPipeline/Pipe.h>

View File

@ -16,7 +16,7 @@
#include <IO/Operators.h>
#include <Parsers/ASTLiteral.h>
#include <QueryPipeline/Pipe.h>
#include <Processors/Transforms/MongoDBSource.h>
#include <Processors/Sources/MongoDBSource.h>
#include <Processors/Sinks/SinkToStorage.h>
namespace DB

View File

@ -1,7 +1,7 @@
#include "StoragePostgreSQL.h"
#if USE_LIBPQXX
#include <Processors/Transforms/PostgreSQLSource.h>
#include <Processors/Sources/PostgreSQLSource.h>
#include <Common/parseAddress.h>
#include <Common/assert_cast.h>