Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinGe00 committed Jun 22, 2024
1 parent 0f84b88 commit fb7c66a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright 2023 LinkedIn Corporation. All rights reserved.
* Copyright 2023-2024 LinkedIn Corporation. All rights reserved.
* Licensed under the BSD-2 Clause license.
* See LICENSE in the project root for license information.
*/
Expand Down Expand Up @@ -361,7 +361,8 @@ private String relDataTypeFieldAccessString(RelDataType fromDataType, RelDataTyp
* @param toDataType desired map RelDataType
*/
private boolean areEqual(RelDataType fromDataType, RelDataType toDataType) {
String fromDataTypeFullyQualifiedStruct = fromDataType.getFullTypeString().replace("RecordType:peek_no_expand", "RecordType");
String fromDataTypeFullyQualifiedStruct =
fromDataType.getFullTypeString().replace("RecordType:peek_no_expand", "RecordType");
return fromDataTypeFullyQualifiedStruct.equals(toDataType.getFullTypeString());
}

Expand Down

0 comments on commit fb7c66a

Please sign in to comment.