SemyonSinchenko commented on issue #707:
URL: 
https://github.com/apache/incubator-graphar/issues/707#issuecomment-2988597497

   My proposal is to make each possible data type as a message, like this:
   
   ```protobuf
   message Bool {
      string name = 1;
   }
   
   message Int32 {
      string name = 1;
   }
   
   ...
   
   message List {
      string name = 1;
      onof element_type {
         Bool bool_type = 2;
         Int32 int32_type = 3;
         ...
      }
   }
   ```
   
   but it is a breaking change.


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to