Hi! I want to join two tables and write the results to Avro where the left and right rows are nested in the avro output. Is it possible to do this with the SQL interface?
Thanks! - Dan CREATE TABLE `flat_avro` ( `left` ROW<id BIGINT, name STRING>, `right` ROW<id BIGINT, name STRING> ) WITH ( 'connector' = 'filesystem', 'path' = 's3p://blah/blah', 'format' = 'avro' ); INSERT INTO `flat_avro` SELECT left.*, right.* FROM `left` LEFT JOIN `right` ON `left`.`id` = `right`.`id` );