MartijnVisser commented on code in PR #26662: URL: https://github.com/apache/flink/pull/26662#discussion_r2159125650
########## flink-end-to-end-tests/flink-confluent-schema-registry/src/main/resources/avro/input-record.avsc: ########## @@ -15,13 +15,14 @@ * limitations under the License. */ - {"namespace": "example.avro", - "type": "record", - "name": "User", - "fields": [ - {"name": "name", "type": "string", "default": ""}, - {"name": "favoriteNumber", "type": "string", "default": ""}, - {"name": "favoriteColor", "type": "string", "default": ""}, - {"name": "eventType","type": {"name": "EventType","type": "enum", "symbols": ["meeting"] }} - ] -} +{ + "namespace": "org.apache.flink.avro.generated", + "type": "record", + "name": "record", + "fields": [ + {"name": "name", "type": ["null", "string"], "default": null}, Review Comment: Disabling auto registration only means that Flink won't try to register the schema in Schema Registry during every run. However, it still means that the schema that has been registered in Schema Registry by external service, is either exactly how Flink would have registered it (so with that specific namespace), or how the user would have provided it via the `avro-confluent.schema` table property. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org