提交 f17e8a43 编写于 作者: S serge-rider

GP model fix

上级 3c57b79d
......@@ -23,10 +23,7 @@ package org.jkiss.dbeaver.ext.greenplum.model;
import org.jkiss.code.NotNull;
import org.jkiss.code.Nullable;
import org.jkiss.dbeaver.DBException;
import org.jkiss.dbeaver.ext.postgresql.model.PostgreDatabase;
import org.jkiss.dbeaver.ext.postgresql.model.PostgreProcedure;
import org.jkiss.dbeaver.ext.postgresql.model.PostgreSchema;
import org.jkiss.dbeaver.ext.postgresql.model.PostgreTableBase;
import org.jkiss.dbeaver.ext.postgresql.model.*;
import org.jkiss.dbeaver.model.exec.jdbc.JDBCPreparedStatement;
import org.jkiss.dbeaver.model.exec.jdbc.JDBCResultSet;
import org.jkiss.dbeaver.model.exec.jdbc.JDBCSession;
......@@ -50,7 +47,7 @@ public class GreenplumSchema extends PostgreSchema {
}
@Override
public Collection<? extends JDBCTable> getTables(DBRProgressMonitor monitor) throws DBException {
public Collection<GreenplumTable> getTables(DBRProgressMonitor monitor) throws DBException {
return greenplumTableCache.getTypedObjects(monitor, this, GreenplumTable.class)
.stream()
.filter(table -> !table.isPartition())
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册