[jOOQ/jOOQ#9565] CheckConstraints are not exported yet
This commit is contained in:
parent
6c3417cdc6
commit
ac5fea8ec0
@ -279,6 +279,7 @@ final class InformationSchemaExport {
|
||||
|
||||
c.setConstraintName(chk.getName());
|
||||
c.setCheckClause(configuration.dsl().render(chk.condition()));
|
||||
result.getCheckConstraints().add(c);
|
||||
}
|
||||
|
||||
private static final void exportIndex0(InformationSchema result, Table<?> t, Index index) {
|
||||
|
||||
@ -644,9 +644,4 @@ final class InformationSchemaMetaImpl extends AbstractMeta {
|
||||
private static final <T> List<T> unmodifiableList(List<? extends T> list) {
|
||||
return list == null ? Collections.emptyList() : Collections.unmodifiableList(list);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "" + source;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user