[jOOQ/jOOQ#11667] Oracle MetaTable fields do not have identity information
This commit is contained in:
parent
22f0b7e8d5
commit
fadd3aa05a
@ -142,6 +142,7 @@ final class MetaImpl extends AbstractMeta {
|
||||
|
||||
|
||||
|
||||
|
||||
private static final Pattern P_SYSINDEX_DERBY = Pattern.compile("^(?i:SQL\\d{14,}).*$");
|
||||
private static final Pattern P_SYSINDEX_H2 = Pattern.compile("^(?i:PRIMARY_KEY_|UK_INDEX_|FK_INDEX_).*$");
|
||||
private static final Pattern P_SYSINDEX_HSQLDB = Pattern.compile("^(?i:SYS_IDX_(?:PK|UK|FK)_).*$");
|
||||
@ -1037,6 +1038,12 @@ final class MetaImpl extends AbstractMeta {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// TODO: Exception handling should be moved inside SQLDataType
|
||||
DataType type = null;
|
||||
try {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user