提交 258bd83e 编写于 作者: S Serge Rider 提交者: GitHub

Merge pull request #10357 from dbeaver/exasolindexes#10208

#10208 Exasol creating index fixed

Former-commit-id: 2b9c7812
...@@ -22,7 +22,8 @@ public class ExasolIndexConfigurator implements DBEObjectConfigurator<ExasolTabl ...@@ -22,7 +22,8 @@ public class ExasolIndexConfigurator implements DBEObjectConfigurator<ExasolTabl
EditIndexPage editPage = new EditIndexPage( EditIndexPage editPage = new EditIndexPage(
"create index", "create index",
index, index,
Arrays.asList(new DBSIndexType("LOCAL","LOCAL"), new DBSIndexType("GLOBAL","GLOBAL")) Arrays.asList(new DBSIndexType("LOCAL","LOCAL"), new DBSIndexType("GLOBAL","GLOBAL")),
false
); );
if (!editPage.edit()) { if (!editPage.edit()) {
return null; return null;
......
...@@ -54,7 +54,11 @@ public class ExasolTableManager extends SQLTableManager<ExasolTable, ExasolSchem ...@@ -54,7 +54,11 @@ public class ExasolTableManager extends SQLTableManager<ExasolTable, ExasolSchem
private static final String CMD_COMMENT = "Comment on Table"; private static final String CMD_COMMENT = "Comment on Table";
private static final String CMD_RENAME = "Rename Table"; private static final String CMD_RENAME = "Rename Table";
private static final Class<?>[] CHILD_TYPES = {ExasolTableColumn.class, ExasolTableUniqueKey.class, ExasolTableForeignKey.class private static final Class<?>[] CHILD_TYPES = {
ExasolTableColumn.class,
ExasolTableUniqueKey.class,
ExasolTableForeignKey.class,
ExasolTableIndex.class
}; };
// ----------------- // -----------------
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册