提交 e351cbde authored 作者: Thomas Mueller's avatar Thomas Mueller

PostgreSQL compatibility: support for data types BIGSERIAL and SERIAL as an…

PostgreSQL compatibility: support for data types BIGSERIAL and SERIAL as an alias for AUTO_INCREMENT.
上级 3d8bb1e5
...@@ -3561,7 +3561,7 @@ public class Parser { ...@@ -3561,7 +3561,7 @@ public class Parser {
} else { } else {
readIf("NULL"); readIf("NULL");
} }
if (readIf("AUTO_INCREMENT")) { if (readIf("AUTO_INCREMENT") || readIf("BIGSERIAL") || readIf("SERIAL")) {
parseAutoIncrement(column); parseAutoIncrement(column);
if (readIf("NOT")) { if (readIf("NOT")) {
read("NULL"); read("NULL");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论