[ https://issues.apache.org/jira/browse/AVRO-3601?focusedWorklogId=800291&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-800291 ]
ASF GitHub Bot logged work on AVRO-3601: ---------------------------------------- Author: ASF GitHub Bot Created on: 12/Aug/22 11:34 Start Date: 12/Aug/22 11:34 Worklog Time Spent: 10m Work Description: martin-g commented on code in PR #1826: URL: https://github.com/apache/avro/pull/1826#discussion_r944376528 ########## lang/c++/test/unittest.cc: ########## @@ -452,7 +457,14 @@ struct TestSchema { customAttributes); std::string expectedJsonWithCustomAttribute = "{\"type\": \"record\", \"name\": \"Test\",\"fields\": " - "[{\"name\": \"f1\", \"type\": \"long\",\"extra field\": \"1\"}]}"; + "[{\"name\": \"f1\", \"type\": \"long\", " + "\"arrayField\": \"[1]\", " + "\"booleanField\": \"true\", " + "\"mapField\": \"{\\\"key1\\\":\\\"value1\\\", \\\"key2\\\":\\\"value2\\\"}\", " + "\"nullField\": \"null\", " + "\"numberField\": \"1.23\", " + "\"stringField\": \"\\\"field value with \\\"double quotes\\\"\\\"\"" Review Comment: At the moment the content is preserved as whatever the user provided. It could be JSON, XML, base64, ... It is up-to the user app to encode/decode the values. You might be right about the non-optional representation (`""`) but IMO this way it is more clear. Other opinions are also welcome! Issue Time Tracking ------------------- Worklog Id: (was: 800291) Time Spent: 4h (was: 3h 50m) > C++ API header contains breaking include > ---------------------------------------- > > Key: AVRO-3601 > URL: https://issues.apache.org/jira/browse/AVRO-3601 > Project: Apache Avro > Issue Type: Bug > Reporter: Mike Ruffing > Assignee: Martin Tzvetanov Grigorov > Priority: Major > Labels: pull-request-available > Time Spent: 4h > Remaining Estimate: 0h > > Problem file/line: > https://github.com/apache/avro/blob/master/lang/c%2B%2B/api/CustomFields.hh#L24 > Steps to reproduce: > * Download AVRO version 1.11.1 > * Execute {{./build.sh install}} (from the {{lang/c++ directory}}) > * Navigate to the installed {{include}} directory > * Verify this file (and path) {{"../impl/json/JsonDom.hh"}} does NOT exists > in the installed {{include}} directory > Relates to: https://issues.apache.org/jira/browse/AVRO-3547 -- This message was sent by Atlassian Jira (v8.20.10#820010)