[jOOQ/jOOQ#14248] Add parser support for CockroachDB STRING type
This commit is contained in:
parent
d1e55bc5ee
commit
d6b38000df
@ -12424,6 +12424,8 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
|
||||
else if (parseKeywordOrIdentifierIf("SMALLSERIAL") ||
|
||||
parseKeywordOrIdentifierIf("SERIAL2"))
|
||||
return SMALLINT.identity(true);
|
||||
else if (parseKeywordOrIdentifierIf("STRING"))
|
||||
return parseDataTypeCollation(parseDataTypeLength(VARCHAR));
|
||||
|
||||
break;
|
||||
|
||||
|
||||
@ -2456,6 +2456,8 @@ package org.jooq.impl;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user