existing = new ViewInfoImpl(newAlias, fkTableMeta);
wiring.putAliasTable(newAlias, existing);
}
//since this is an inner join on primary key, use id column
DboColumnIdMeta colMeta2 = existing.getTableMeta().getIdColumnMeta();
JoinInfo join = new JoinInfo(tableInfo, columnMeta, existing, colMeta2, type);
tableInfo.addJoin(join);
existing.addJoin(join);
}