Hi, In Flink 1.9, we have option to create the TableSchema form TypeInformation. We have used below.
TypeInformation typeInfo = AvroSchemaConverter.convertToTypeInfo(schema); TableSchema tableSchema = TableSchema.fromTypeInfo(typeInfo); However TableSchema's fromTypeInfo method is deprecated in Flink 1.10. Is there any other utility to create TableSchema from Avro schema in Flink 1.0 ?