You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (t.getSubselect() != null) {
map.put("( " + t.getSubselect() + " )", t);
Iterator<Column> columnIter = t.getColumnIterator();
while (columnIter.hasNext()) {
final Column column = columnIter.next();
// populate column sql type
column.getSqlType(dialect, mapping);
}
}
to com.blazebit.persistence.impl.hibernate.SimpleDatabase.
We also need to supply org.hibernate.dialect.Dialect and org.hibernate.engine.spi.Mapping to com.blazebit.persistence.impl.hibernate.SimpleDatabase.
This happens because the CTE subselect is used as table name in
com.blazebit.persistence.impl.hibernate.HibernateJpaProvider#getColumnType:194
.The text was updated successfully, but these errors were encountered: