Uploaded image for project: 'Teiid'
  1. Teiid
  2. TEIID-4456

Enable the abiltiy to support nested and non-nested message descriptors

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Done
    • Icon: Major Major
    • 9.1, 8.12.7.6_3
    • None
    • Misc. Connectors
    • None

      Protobuf definition files can have messages defined in a nested and non-nested form.

      Nested:

      package bigdata;
      message DataEntity {
      ..
         optional MetaData context = 6;
      
        message MetaData {
       ... 
       }
      }
      

      Non-nested:

      package bigdata;
      
      message DataEntity {
      ..
         optional MetaData context = 6;
      }
        message MetaData {
       ... 
       }
      
      

      The ProtobufMetadataProcessor needs to be changed to so that it can create the metadata from either use case.

      Currently it obtains the child descriptor messages from the parent descriptor.

              van.halbert Van Halbert (Inactive)
              van.halbert Van Halbert (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

                Created:
                Updated:
                Resolved: