[jOOQ/jOOQ#11566] JDBCDatabase doesn't yet distinguish between
TableType.TABLE and VIEW and others
This commit is contained in:
parent
8a8327d821
commit
c8c2248376
@ -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;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user