[jOOQ/jOOQ#11566] JDBCDatabase doesn't yet distinguish between

TableType.TABLE and VIEW and others
This commit is contained in:
Lukas Eder 2021-03-04 14:01:00 +01:00
parent 8a8327d821
commit c8c2248376

View File

@ -55,7 +55,7 @@ public class DefaultMetaTableDefinition extends AbstractTableDefinition {
private final Table<?> table;
public DefaultMetaTableDefinition(SchemaDefinition schema, Table<?> table) {
super(schema, table.getName(), table.getComment());
super(schema, table.getName(), table.getComment(), table.getType(), null);
this.table = table;
}