Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ public class RowType extends AbstractType {
private final boolean comparable;
private final boolean orderable;

private static final String ROW_NAME = "row";

private RowType(List<Field> originalFields) {

this.fields = new ArrayList<>(originalFields);
Expand Down Expand Up @@ -93,7 +95,7 @@ public TypeEnum getTypeEnum() {
public String getDisplayName() {
// Convert to standard sql name
StringBuilder result = new StringBuilder();
result.append("ROW").append('(');
result.append(ROW_NAME).append('(');
for (Field field : fields) {
String typeDisplayName = field.getType().getDisplayName();
if (field.getName().isPresent()) {
Expand Down
Loading