Skip to content
Closed
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 @@ -93,7 +93,11 @@ public Optional<CatalogHandle> getCatalogHandle(TransactionId transactionId, Str
@Override
public Optional<CatalogMetadata> getOptionalCatalogMetadata(TransactionId transactionId, String catalogName)
{
throw new UnsupportedOperationException();
/*
* When SQL path is present in the session, it is possible for a worker node to invoke this method in the
* process of resolving a coercion. Return Optional.empty() here to avoid failing the query in that scenario.
*/
return Optional.empty();
}

@Override
Expand Down