pvary commented on code in PR #13426:
URL: https://github.com/apache/iceberg/pull/13426#discussion_r2185162198
##########
flink/v2.0/flink/src/main/java/org/apache/iceberg/flink/actions/Actions.java:
##########
@@ -32,21 +35,52 @@ public class Actions {
private final StreamExecutionEnvironment env;
private final Table table;
+ private final TableLoader tableLoader;
+ @Deprecated
private Actions(StreamExecutionEnvironment env, Table table) {
this.env = env;
this.table = table;
+ this.tableLoader = null;
}
+ private Actions(StreamExecutionEnvironment env, TableLoader tableLoader) {
+ this.env = env;
+ this.tableLoader = tableLoader;
+ if (!tableLoader.isOpen()) {
+ tableLoader.open();
+ }
+
+ this.table = tableLoader.loadTable();
+ }
+
+ @Deprecated
Review Comment:
Add javadoc for the deprecation
##########
flink/v2.0/flink/src/main/java/org/apache/iceberg/flink/actions/Actions.java:
##########
@@ -32,21 +35,52 @@ public class Actions {
private final StreamExecutionEnvironment env;
private final Table table;
+ private final TableLoader tableLoader;
+ @Deprecated
private Actions(StreamExecutionEnvironment env, Table table) {
this.env = env;
this.table = table;
+ this.tableLoader = null;
}
+ private Actions(StreamExecutionEnvironment env, TableLoader tableLoader) {
+ this.env = env;
+ this.tableLoader = tableLoader;
+ if (!tableLoader.isOpen()) {
+ tableLoader.open();
+ }
+
+ this.table = tableLoader.loadTable();
+ }
+
+ @Deprecated
public static Actions forTable(StreamExecutionEnvironment env, Table table) {
return new Actions(env, table);
}
+ public static Actions forTable(StreamExecutionEnvironment env, TableLoader
tableLoader) {
+ return new Actions(env, tableLoader);
+ }
+
+ @Deprecated
Review Comment:
Add javadoc for the deprecation
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]