提交 f2438665 编写于 作者: A Andrew Khitrin

Postgres partition DDL Stub

上级 82459a3e
...@@ -18,9 +18,12 @@ ...@@ -18,9 +18,12 @@
package org.jkiss.dbeaver.ext.postgresql.model; package org.jkiss.dbeaver.ext.postgresql.model;
import java.sql.ResultSet; import java.sql.ResultSet;
import java.util.Map;
import org.jkiss.dbeaver.DBException;
import org.jkiss.dbeaver.model.impl.jdbc.JDBCUtils; import org.jkiss.dbeaver.model.impl.jdbc.JDBCUtils;
import org.jkiss.dbeaver.model.meta.Property; import org.jkiss.dbeaver.model.meta.Property;
import org.jkiss.dbeaver.model.runtime.DBRProgressMonitor;
import org.jkiss.dbeaver.model.struct.DBSEntity; import org.jkiss.dbeaver.model.struct.DBSEntity;
public class PostgreTablePartition extends PostgreTable public class PostgreTablePartition extends PostgreTable
...@@ -44,6 +47,11 @@ public class PostgreTablePartition extends PostgreTable ...@@ -44,6 +47,11 @@ public class PostgreTablePartition extends PostgreTable
return expr; return expr;
} }
@Override
public String getObjectDefinitionText(DBRProgressMonitor monitor, Map<String, Object> options) throws DBException {
return "/*Partition DDL not implemented yet.*/";
}
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册