Skip to content

Commit 825f4c5

Browse files
committed
address concerns
1 parent a3326e6 commit 825f4c5

File tree

2 files changed

+2
-2
lines changed
  • fdb-record-layer-core/src/main/java/com/apple/foundationdb/record/query/plan/cascades/typing
  • fdb-relational-core/src/main/antlr

2 files changed

+2
-2
lines changed

fdb-record-layer-core/src/main/java/com/apple/foundationdb/record/query/plan/cascades/typing/Type.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ private static Type fromProtoType(@Nullable Descriptors.GenericDescriptor descri
421421
final var elementField = messageDescriptor.findFieldByName(NullableArrayTypeUtils.getRepeatedFieldName());
422422
final var elementTypeCode = TypeCode.fromProtobufType(elementField.getType());
423423
return fromProtoTypeToArray(descriptor, protoType, elementTypeCode, true);
424-
} else if (Uuid.MESSAGE_NAME.equals(messageDescriptor.getName())) {
424+
} else if (TupleFieldsProto.UUID.getDescriptor().equals(messageDescriptor)) {
425425
return Type.uuidType(isNullable);
426426
} else {
427427
return Record.fromFieldDescriptorsMap(isNullable, Record.toFieldDescriptorMap(messageDescriptor.getFields()));

fdb-relational-core/src/main/antlr/RelationalLexer.g4

+1-1
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,7 @@ UNIX_TIMESTAMP: 'UNIX_TIMESTAMP';
11781178
UPDATEXML: 'UPDATEXML';
11791179
UPPER: 'UPPER';
11801180
UUID: 'UUID';
1181-
//UUID_SHORT: 'UUID_SHORT';
1181+
UUID_SHORT: 'UUID_SHORT';
11821182
VALIDATE_PASSWORD_STRENGTH: 'VALIDATE_PASSWORD_STRENGTH';
11831183
VERSION: 'VERSION';
11841184
WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS: 'WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS';

0 commit comments

Comments
 (0)