Skip to content

Commit a988a04

Browse files
committed
fix build
1 parent d09df40 commit a988a04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Databases/DataLake/GlueCatalog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ bool GlueCatalog::classifyTimestampTZ(const String & column_name, const TableMet
427427
DB::ASTStorage * storage = table_engine_definition->as<DB::ASTStorage>();
428428
DB::ASTs args = storage->engine->arguments->children;
429429

430-
String storage_endpoint = !settings[DB::DatabaseDataLakeSetting::storage_endpoint].empty() ? settings[DB::DatabaseDataLakeSetting::storage_endpoint].value : metadata_uri;
430+
String storage_endpoint = !settings[DB::DatabaseDataLakeSetting::storage_endpoint].value.empty() ? settings[DB::DatabaseDataLakeSetting::storage_endpoint].value : metadata_uri;
431431

432432
if (args.empty())
433433
args.emplace_back(std::make_shared<DB::ASTLiteral>(storage_endpoint));

0 commit comments

Comments
 (0)