[jOOQ/jOOQ#6278] Wrong DDL generated when using SQLDataType.TINYINT on SQL Server

This commit is contained in:
Lukas Eder 2020-06-11 15:55:53 +02:00
parent a695f742f7
commit 12aa3f01e1

View File

@ -4890,6 +4890,12 @@ final class Tools {
else if (type.identity() && ctx.family() == SQLITE && type.isNumeric()) {
ctx.sql("integer");
}
else {
ctx.sql(typeName);
}