[jOOQ/jOOQ#11860] Generate FOREIGN KEY meta data in Teradata
This commit is contained in:
parent
a4e0c95e5f
commit
abf96f57fb
@ -2703,9 +2703,6 @@ public abstract class AbstractDatabase implements Database {
|
||||
if (getIncludeUniqueKeys())
|
||||
onError(ERROR, "Error while fetching unique keys", () -> loadUniqueKeys(result));
|
||||
|
||||
if (getIncludeForeignKeys())
|
||||
onError(ERROR, "Error while fetching foreign keys", () -> loadForeignKeys(result));
|
||||
|
||||
if (getIncludeCheckConstraints())
|
||||
onError(ERROR, "Error while fetching check constraints", () -> loadCheckConstraints(result));
|
||||
|
||||
@ -2721,6 +2718,13 @@ public abstract class AbstractDatabase implements Database {
|
||||
|
||||
|
||||
|
||||
if (getIncludeForeignKeys())
|
||||
onError(ERROR, "Error while fetching foreign keys", () -> loadForeignKeys(result));
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user