#pragma once #include #include #include #include namespace DB { /** Create an object to read data from a file. * * @param size - the number of bytes to read */ std::unique_ptr createReadBufferFromFileBase( const std::string & filename, const ReadSettings & settings, std::optional size = {}, int flags_ = -1, char * existing_memory = nullptr, size_t alignment = 0); }