提交 9d78b36b 编写于 作者: S Serge Rider 提交者: GitHub

Merge pull request #5941 from dbeaver/5940_Partition_DDL

Postgres partition DDL Stub

Former-commit-id: 92cd1eb0
......@@ -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.
先完成此消息的编辑!
想要评论请 注册