Merge pull request #67455 from ClickHouse/correct-member-order

Use correct order of fields in `StorageURLSource`
This commit is contained in:
Antonio Andelic 2024-07-31 06:57:00 +00:00 committed by GitHub
commit 7de50953c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -228,12 +228,12 @@ private:
bool need_only_count;
size_t total_rows_in_file = 0;
Poco::Net::HTTPBasicCredentials credentials;
std::unique_ptr<ReadBuffer> read_buf;
std::shared_ptr<IInputFormat> input_format;
std::unique_ptr<QueryPipeline> pipeline;
std::unique_ptr<PullingPipelineExecutor> reader;
Poco::Net::HTTPBasicCredentials credentials;
};
class StorageURLSink : public SinkToStorage