Removed unwanted code & debug lines

This commit is contained in:
Smita Kulkarni 2023-06-06 16:42:56 +02:00
parent 75d0f9fc97
commit cbe4ea67ae
2 changed files with 0 additions and 6 deletions

View File

@ -127,8 +127,6 @@ public:
bool isRemote() const override { return true; } bool isRemote() const override { return true; }
MultiVersion<Azure::Storage::Blobs::BlobContainerClient> getClient() { return client; }
private: private:
const String name; const String name;
/// client used to access the files in the Blob Storage cloud /// client used to access the files in the Blob Storage cloud

View File

@ -294,8 +294,6 @@ void TableFunctionS3::addColumnsStructureToArguments(ASTs & args, const String &
ColumnsDescription TableFunctionS3::getActualTableStructure(ContextPtr context) const ColumnsDescription TableFunctionS3::getActualTableStructure(ContextPtr context) const
{ {
LOG_INFO(&Poco::Logger::get("TableFunctionS3"), "getActualTableStructure configuration.structure = {} ",configuration.structure);
if (configuration.structure == "auto") if (configuration.structure == "auto")
{ {
context->checkAccess(getSourceAccessType()); context->checkAccess(getSourceAccessType());
@ -321,8 +319,6 @@ StoragePtr TableFunctionS3::executeImpl(const ASTPtr & /*ast_function*/, Context
else if (!structure_hint.empty()) else if (!structure_hint.empty())
columns = structure_hint; columns = structure_hint;
LOG_INFO(&Poco::Logger::get("TableFunctionS3"), "executeImpl structre = {} structure_hint = {} ",configuration.structure, structure_hint.getAll().toString());
StoragePtr storage = std::make_shared<StorageS3>( StoragePtr storage = std::make_shared<StorageS3>(
configuration, configuration,