Skip to content

Commit 1606726

Browse files
authored
Merge pull request ClickHouse#78616 from ClickHouse/ncb/minor-fix
minor fix to ObjectStorage exception
2 parents 865a9a6 + c2b5bf4 commit 1606726

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Storages/ObjectStorage/Utils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ void resolveSchemaAndFormat(
6969
{
7070
/// We don't allow special columns.
7171
throw Exception(ErrorCodes::BAD_ARGUMENTS,
72-
"Special columns are not supported for {} storage"
73-
"like MATERIALIZED, ALIAS or EPHEMERAL", configuration->getTypeName());
72+
"Special columns like MATERIALIZED, ALIAS or EPHEMERAL are not supported for {} storage.",
73+
configuration->getTypeName());
7474
}
7575
}
7676

0 commit comments

Comments
 (0)