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

Postgres partition DDL Stub

上级 82459a3e
......@@ -18,9 +18,12 @@
package org.jkiss.dbeaver.ext.postgresql.model;
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.meta.Property;
import org.jkiss.dbeaver.model.runtime.DBRProgressMonitor;
import org.jkiss.dbeaver.model.struct.DBSEntity;
public class PostgreTablePartition extends PostgreTable
......@@ -43,6 +46,11 @@ public class PostgreTablePartition extends PostgreTable
public String getExpr() {
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.
先完成此消息的编辑!
想要评论请 注册