From 71d0697661ea1e0d7794aa5d294cce8ca131f890 Mon Sep 17 00:00:00 2001 From: mohsaka <135669458+mohsaka@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:14:45 -0700 Subject: [PATCH] Small PR to fix error message (#11105) Summary: Requested here to split off from the PR. https://github.com/facebookincubator/velox/pull/10816#discussion_r1776433679 Pull Request resolved: https://github.com/facebookincubator/velox/pull/11105 Reviewed By: Yuhta, amitkdutta Differential Revision: D63475266 Pulled By: kagamiori fbshipit-source-id: 11c7830b1cd4b665bc7915fd59b52673a7d39537 --- velox/functions/prestosql/types/UuidType.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/velox/functions/prestosql/types/UuidType.cpp b/velox/functions/prestosql/types/UuidType.cpp index 8d0b5b5b22fa..5aa420113a69 100644 --- a/velox/functions/prestosql/types/UuidType.cpp +++ b/velox/functions/prestosql/types/UuidType.cpp @@ -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()); } }