}
} else if (aliasedExpr.getExpr() instanceof IdentifierExpr) {
// AliasedExpr entries which are just IdentifierExprs were
// not handled in AssignFieldLabelsVisitor. Now that the
// IdentifierExpr has been visited, resolve its avro name here.
IdentifierExpr ident = (IdentifierExpr) aliasedExpr.getExpr();
String name = aliasedExpr.getUserAlias();
String assignedName = ident.getAssignedName();
if (!ident.getIdentifier().startsWith("#")) {
// Use the avro label of the identified field.
aliasedExpr.setAvroLabel(assignedName);
}
Type type = ident.getType(exprTable);
// Create symbols for the output SymbolTable.
createSymbols(outTable, stmtAlias, name, assignedName, type);
} else {