Skip to content

Commit cddd24a

Browse files
committed
fix: add default value for catalog_options in FileSystemCatalog constructor
1 parent f3a01b0 commit cddd24a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/paimon/core/catalog/file_system_catalog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class Logger;
3939
class FileSystemCatalog : public Catalog {
4040
public:
4141
FileSystemCatalog(const std::shared_ptr<FileSystem>& fs, const std::string& warehouse,
42-
const std::map<std::string, std::string>& catalog_options);
42+
const std::map<std::string, std::string>& catalog_options = {});
4343

4444
Status CreateDatabase(const std::string& db_name,
4545
const std::map<std::string, std::string>& options,

0 commit comments

Comments
 (0)