提交 3c94053d authored 作者: Noel Grandin's avatar Noel Grandin

#472: Support CREATE SEQUENCE ... ORDER as a NOOP for Oracle compatibility

上级 6290b79a
......@@ -21,7 +21,7 @@ Change Log
<h2>Next Version (unreleased)</h2>
<ul>
<li>-
<li>Issue #472: Support CREATE SEQUENCE ... ORDER as a NOOP for Oracle compatibility
</li>
</ul>
......
......@@ -4658,6 +4658,8 @@ public class Parser {
command.setCacheSize(ValueExpression.get(ValueLong.get(1)));
} else if (readIf("BELONGS_TO_TABLE")) {
command.setBelongsToTable(true);
} else if (readIf("ORDER")) {
// Oracle compatibility
} else {
break;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论