Skip to content

Commit 4746cd3

Browse files
committed
Exclude frozen specifier from fullFunctionName
As a function/aggregate argument applying frozen<> to a UDT is not applicable since that's a consequence of the serialization of the data and not the definition of the argument. Previously this was not an issue since UDTs were always frozen which is no longer the case.
1 parent a079120 commit 4746cd3

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

driver-core/src/main/java/com/datastax/driver/core/Metadata.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,7 @@ static String fullFunctionName(String simpleName, Collection<?> argumentTypes) {
175175
if (argumentType instanceof UserType) {
176176
UserType userType = (UserType) argumentType;
177177
String typeName = Metadata.escapeId(userType.getTypeName());
178-
if (userType.isFrozen())
179-
sb.append("frozen<");
180178
sb.append(typeName);
181-
if (userType.isFrozen())
182-
sb.append(">");
183179
} else {
184180
sb.append(argumentType);
185181
}

0 commit comments

Comments
 (0)