# Copyright Materialize, Inc. and contributors. All rights reserved. # # Use of this software is governed by the Business Source License # included in the LICENSE file at the root of this repository. # # As of the Change Date specified in that file, in accordance with # the Business Source License, use of this software will be governed # by the Apache License, Version 2.0. # # Ingest some more data and read it back # $ set schema={"type": "record", "name": "schema", "fields": [ {"name": "f1", "type": "string" } ] } $ kafka-ingest format=avro topic=kafka-multi-broker schema=${schema} timestamp=11 {"f1": "03-01" } $ kafka-ingest format=avro topic=kafka-multi-broker schema=${schema} timestamp=12 {"f1": "03-02" } $ kafka-ingest format=avro topic=kafka-multi-broker schema=${schema} timestamp=13 {"f1": "03-03" } > SELECT f1 FROM kafka_multi_broker_tbl 01-01 01-02 01-03 02-01 02-02 02-03 03-01 03-02 03-03