tmwangi opened a new issue #5612:
URL: https://github.com/apache/incubator-pinot/issues/5612


   Avro allows one to rename a field and also retain the old name using an 
`alias` keyword like so:
   
   ```
   // Sample avro schema with an aliased field
   record FooTable {
     // rename column old_bar to bar
     string @aliases(["old_bar"]) bar;
     // Other fields
   }
   ```
   
   While using avro schema to configure Pinot column names, is it possible to 
have a Pinot equivalent for this to allow easy column renaming? That way 
services still using the old column name still read and write using that old 
name.


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

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