提交 3940e3cb 编写于 作者: N Nikita Akilov

#11047 undo changes

上级 bcb4e15c
......@@ -32,6 +32,7 @@ import java.util.Locale;
* Data transfer job
*/
public class DataTransferJob implements DBRRunnableWithProgress {
private DataTransferSettings settings;
private DBTTask task;
private long elapsedTime;
......@@ -41,7 +42,8 @@ public class DataTransferJob implements DBRRunnableWithProgress {
private Log log;
private DBTTaskExecutionListener listener;
public DataTransferJob(DataTransferSettings settings, DBTTask task, Locale locale, Log log, DBTTaskExecutionListener listener) {
public DataTransferJob(DataTransferSettings settings, DBTTask task, Locale locale, Log log, DBTTaskExecutionListener listener)
{
this.settings = settings;
this.task = task;
this.locale = locale;
......@@ -120,5 +122,7 @@ public class DataTransferJob implements DBRRunnableWithProgress {
} finally {
monitor.done();
}
}
}
......@@ -45,6 +45,7 @@ import java.util.List;
* GreenplumTable
*/
public class GreenplumTable extends PostgreTableRegular {
private static final Log log = Log.getLog(GreenplumTable.class);
private int[] distributionColumns;
......@@ -203,4 +204,5 @@ public class GreenplumTable extends PostgreTableRegular {
}
}
}
}
......@@ -29,7 +29,8 @@ import java.sql.SQLException;
/**
* RedshiftTable base
*/
public class RedshiftTable extends PostgreTableRegular {
public class RedshiftTable extends PostgreTableRegular
{
private static final Log log = Log.getLog(RedshiftTable.class);
public RedshiftTable(PostgreSchema catalog) {
......@@ -58,4 +59,5 @@ public class RedshiftTable extends PostgreTableRegular {
diskSpace = dbResult.getLong("size") * 1024 * 1024;
rowCountEstimate = rowCount = dbResult.getLong("tbl_rows");
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册