Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsaka committed Dec 6, 2024
1 parent d7d21b1 commit 7f730c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion velox/expression/FunctionSignature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ void validateBaseTypeAndCollectTypeParams(

if (!isPositiveInteger(typeName) &&
!tryMapNameToTypeKind(typeName).has_value() &&
!isDecimalName(typeName) && !isDateName(typeName) && !isIPPrefixName(typeName)) {
!isDecimalName(typeName) && !isDateName(typeName) &&
!isIPPrefixName(typeName)) {
VELOX_USER_CHECK(hasType(typeName), "Type doesn't exist: '{}'", typeName);
}

Expand Down

0 comments on commit 7f730c7

Please sign in to comment.