Hisoka-X commented on PR #7361:
URL: https://github.com/apache/seatunnel/pull/7361#issuecomment-2278950498

   ```
   protobuf_schema = """
                 syntax = "proto3";
   
                 package wiki.hadoop.protobuf;
   
                 option java_outer_classname = "Test2";
   
                 message Person {
                   string name = 1;
                   int32 id = 2;
                   string email = 3;
   
                   message Address {
                     string street = 1;
                     string city = 2;
                     string state = 3;
                     string zip = 4;
                   }
   
                   Address address = 4;
   
                   map<string, float> attributes = 5;
   
                   repeated string phone_numbers = 6;
                 }
                 """
   ```
   
   +1 for this configure way. cc @hailin0 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to