pvary commented on code in PR #14210:
URL: https://github.com/apache/iceberg/pull/14210#discussion_r2390948399
##########
flink/v1.20/flink/src/main/java/org/apache/iceberg/flink/sink/FlinkAppenderFactory.java:
##########
@@ -61,6 +61,23 @@ public class FlinkAppenderFactory implements
FileAppenderFactory<RowData>, Seria
private RowType eqDeleteFlinkSchema = null;
private RowType posDeleteFlinkSchema = null;
+ public FlinkAppenderFactory(
+ Table table,
+ Schema schema,
+ RowType flinkSchema,
+ Map<String, String> props,
+ PartitionSpec spec,
+ int[] equalityFieldIds,
+ Schema eqDeleteRowSchema) {
+ this(table, schema, flinkSchema, props, spec, equalityFieldIds,
eqDeleteRowSchema, null);
+ }
+
+ /**
+ * @deprecated This constructor is deprecated as of version 1.11.0 and will
be removed in 1.12.0.
+ * Position deletes that include row data are no longer supported. Use
{@link
+ * #FlinkAppenderFactory(Table, Schema, RowType, Map, PartitionSpec,
int[], Schema)} instead.
+ */
+ @Deprecated
Review Comment:
We need to keep this, as this is public and not annotated with `@Internal`
--
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]