protobuf-map.td 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Use of this software is governed by the Business Source License
  4. # included in the LICENSE file at the root of this repository.
  5. #
  6. # As of the Change Date specified in that file, in accordance with
  7. # the Business Source License, use of this software will be governed
  8. # by the Apache License, Version 2.0.
  9. $ set-arg-default single-replica-cluster=quickstart
  10. # Test that Protobuf map fields are unsupported.
  11. $ kafka-create-topic topic=maps partitions=1
  12. $ file-append path=maps.proto
  13. syntax = "proto3";
  14. import "google/protobuf/wrappers.proto";
  15. message Maps {
  16. map<int32, int32> int_map = 1;
  17. map<string, google.protobuf.Int64Value> message_map = 2;
  18. }
  19. $ protobuf-compile-descriptors inputs=maps.proto output=maps.pb set-var=maps-schema
  20. > CREATE CONNECTION kafka_conn
  21. TO KAFKA (BROKER '${testdrive.kafka-addr}', SECURITY PROTOCOL PLAINTEXT);
  22. > CREATE SOURCE maps
  23. IN CLUSTER ${arg.single-replica-cluster}
  24. FROM KAFKA CONNECTION kafka_conn (TOPIC 'testdrive-maps-${testdrive.seed}')
  25. ! CREATE TABLE maps_tbl FROM SOURCE maps (REFERENCE "testdrive-maps-${testdrive.seed}")
  26. FORMAT PROTOBUF MESSAGE '.Maps' USING SCHEMA '${maps-schema}'
  27. contains:Protobuf map fields are not supported