[jOOQ/jOOQ#9792] Meta doesn't produce correct data type in SQL Server for identity columns

This commit is contained in:
Lukas Eder 2020-02-05 14:10:31 +01:00
parent 808d3c7ae1
commit b84193422c

View File

@ -858,6 +858,11 @@ final class MetaImpl extends AbstractMeta {
? column.get(22, boolean.class) // IS_AUTOINCREMENT
: false;
// TODO: Exception handling should be moved inside SQLDataType
DataType type = null;
try {