From db872f8f3613e855f60c14983335e54c1fc95c2e Mon Sep 17 00:00:00 2001 From: JohnKeeney Date: Mon, 10 May 2021 13:19:46 +0100 Subject: Support ':' in Apex Event Avro schema fieldnames Similar to '.' (_DoT_) and '-' (_Dash_), the ':' (_ColoN_) character can now be used in Apex Event Field names specified using Avro Schema Change-Id: I320058441a1a1a544b9f1619e45c96e71e5aa9e3 Signed-off-by: JohnKeeney Issue-ID: POLICY-3301 Signed-off-by: JohnKeeney (cherry picked from commit fe40844bba4a94e26efc0f1c57d62c97e35bfc79) --- .../src/test/resources/avsc/MapExampleAddressInvalidFields.avsc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins/plugins-context/plugins-context-schema/plugins-context-schema-avro/src/test/resources/avsc/MapExampleAddressInvalidFields.avsc') diff --git a/plugins/plugins-context/plugins-context-schema/plugins-context-schema-avro/src/test/resources/avsc/MapExampleAddressInvalidFields.avsc b/plugins/plugins-context/plugins-context-schema/plugins-context-schema-avro/src/test/resources/avsc/MapExampleAddressInvalidFields.avsc index ddffb4bbc..86c145bfc 100644 --- a/plugins/plugins-context/plugins-context-schema/plugins-context-schema-avro/src/test/resources/avsc/MapExampleAddressInvalidFields.avsc +++ b/plugins/plugins-context/plugins-context-schema/plugins-context-schema-avro/src/test/resources/avsc/MapExampleAddressInvalidFields.avsc @@ -4,7 +4,8 @@ "name" : "AddressUSRecord", "fields" : [ {"name": "street_DasH_address", "type": "string"}, - {"name": "the_DoT_city", "type": "string"} + {"name": "the_DoT_city", "type": "string"}, + {"name": "the_ColoN_code", "type": "string"} ] } } \ No newline at end of file -- cgit 1.2.3-korg