Skip to content

Commit

Permalink
Small PR to fix error message (#11105)
Browse files Browse the repository at this point in the history
Summary:
Requested here to split off from the PR.
#10816 (comment)

Pull Request resolved: #11105

Reviewed By: Yuhta, amitkdutta

Differential Revision: D63475266

Pulled By: kagamiori

fbshipit-source-id: 11c7830b1cd4b665bc7915fd59b52673a7d39537
  • Loading branch information
mohsaka authored and facebook-github-bot committed Sep 26, 2024
1 parent 4da43a1 commit 71d0697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion velox/functions/prestosql/types/UuidType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class UuidCastOperator : public exec::CastOperator {
castFromString(input, context, rows, *result);
} else {
VELOX_UNSUPPORTED(
"Cast from {} to UUID not yet supported", resultType->toString());
"Cast from {} to UUID not yet supported", input.type()->toString());
}
}

Expand Down

0 comments on commit 71d0697

Please sign in to comment.