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