[jOOQ/jOOQ#8717] Support parsing SQL Server's UNIQUEIDENTIFIER data type
This commit is contained in:
parent
8ca6c01264
commit
999a4eb761
@ -8821,6 +8821,8 @@ final class ParserImpl implements Parser {
|
||||
case 'U':
|
||||
if (parseKeywordOrIdentifierIf(ctx, "UUID"))
|
||||
return SQLDataType.UUID;
|
||||
else if (parseKeywordOrIdentifierIf(ctx, "UNIQUEIDENTIFIER"))
|
||||
return SQLDataType.UUID;
|
||||
|
||||
break;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user