kinolaev opened a new pull request, #17200: URL: https://github.com/apache/iceberg/pull/17200
Requires #17196. This PR adds the `legacyTimestampMapping` flag to `AvroGenericRecordToRowDataMapper` and `RowDataToAvroGenericRecordConverter` to support conversions to and from Avro `local-timestamp-*` values. These changes could simplify an implementation of `org.apache.iceberg.flink.sink.dynamic.DynamicRecordGenerator<org.apache.avro.generic.GenericRecord>` as follows: ```java Schema schema = AvroSchemaUtil.convert(record.getSchema(), false); RowData rowData = AvroGenericRecordToRowDataMapper.forAvroSchema(record.getSchema(), false).map(record); ``` -- 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]
