We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b43e884 commit be04e25Copy full SHA for be04e25
fdb-relational-core/src/test/java/com/apple/foundationdb/relational/api/ddl/DdlTestUtil.java
@@ -251,7 +251,11 @@ private void buildTypesAndTables() {
251
if (extension != null && extension.hasUsage() && extension.getUsage() == RecordMetaDataOptionsProto.RecordTypeOptions.Usage.UNION) {
252
//we found the Union Descriptor
253
for (DescriptorProtos.FieldDescriptorProto tableDescs : typeDesc.getFieldList()) {
254
- tableNames.add(tableDescs.getTypeName());
+ String name = tableDescs.getTypeName();
255
+ if (name.startsWith(".")) {
256
+ name = name.substring(1);
257
+ }
258
+ tableNames.add(name);
259
}
260
261
0 commit comments