This commit is contained in:
Konstantin Bogdanov 2024-11-20 14:46:29 +01:00
parent b1e7847ee8
commit e3e6c79d72
No known key found for this signature in database
7 changed files with 4 additions and 8 deletions

View File

@ -10,7 +10,7 @@
#include <Storages/VirtualColumnUtils.h>
#include <Storages/ObjectStorage/Utils.h>
#include <Storages/ObjectStorage/StorageObjectStorageSource.h>
#include <Storages/extractTableFunctionArgumentsFromSelectQuery.h>
#include <Storages/extractTableFunctionFromSelectQuery.h>
namespace DB

View File

@ -9,7 +9,7 @@
#include <Storages/StorageFileCluster.h>
#include <Storages/IStorage.h>
#include <Storages/StorageFile.h>
#include <Storages/extractTableFunctionArgumentsFromSelectQuery.h>
#include <Storages/extractTableFunctionFromSelectQuery.h>
#include <Storages/VirtualColumnUtils.h>
#include <TableFunctions/TableFunctionFileCluster.h>

View File

@ -20,7 +20,7 @@
#include <Storages/IStorage.h>
#include <Storages/SelectQueryInfo.h>
#include <Storages/StorageURL.h>
#include <Storages/extractTableFunctionArgumentsFromSelectQuery.h>
#include <Storages/extractTableFunctionFromSelectQuery.h>
#include <Storages/VirtualColumnUtils.h>
#include <TableFunctions/TableFunctionURLCluster.h>

View File

@ -1,4 +1,4 @@
#include <Storages/extractTableFunctionArgumentsFromSelectQuery.h>
#include <Storages/extractTableFunctionFromSelectQuery.h>
#include <Parsers/ASTExpressionList.h>
#include <Parsers/ASTLiteral.h>

View File

@ -7,7 +7,6 @@
namespace DB
{
ASTExpressionList * extractTableFunctionArgumentsFromSelectQuery(ASTPtr & query);
ASTFunction * extractTableFunctionFromSelectQuery(ASTPtr & query);
}

View File

@ -7,8 +7,6 @@
#include <TableFunctions/ITableFunction.h>
#include <TableFunctions/TableFunctionObjectStorage.h>
#include <Common/logger_useful.h>
namespace DB
{

View File

@ -17,7 +17,6 @@
#include <IO/WriteHelpers.h>
#include <IO/WriteBufferFromVector.h>
#include "Common/logger_useful.h"
namespace DB