Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -436,10 +436,11 @@ public static void validateAndApplyMetadata(
if (!(source instanceof SupportsReadingMetadata)) {
throw new ValidationException(
String.format(
"Table '%s' declares metadata columns, but the underlying %s doesn't implement "
"Table '%s' declares metadata columns, but the underlying %s class %s doesn't implement "
+ "the %s interface. Therefore, metadata cannot be read from the given source.",
source.asSummaryString(),
DynamicTableSource.class.getSimpleName(),
source.getClass().getName(),
SupportsReadingMetadata.class.getSimpleName()));
}

Expand Down