Re: Adding a virtual column for a custom input format

2020-05-06 Thread Gopal V
Hi, > I'm hoping someone can help me shed some light on how Hive deals with virtual columns. The virtual column impl is not extensible in Hive, it is a fixed set of enums. https://github.com/apache/hive/blob/master/ql/src/java/org/apache/hadoop/hive/ql/metadata/VirtualColumn.java#L64

Re: Adding a virtual column for a custom input format

2020-05-06 Thread Christine Mathiesen
hope that clarifies my question a bit, thanks for your reply!  Christine From: Mich Talebzadeh Reply to: "user@hive.apache.org" Date: Wednesday, 6 May 2020 at 17:11 To: user Subject: Re: Adding a virtual column for a custom input format Hi Christine. Virtual column meaning a deri

Re: Adding a virtual column for a custom input format

2020-05-06 Thread saquib khan
unsubscribe On Wed, May 6, 2020 at 10:53 AM Christine Mathiesen wrote: > Hello! > > I'm hoping someone can help me shed some light on how Hive deals with > virtual columns. We are trying to implement some time travel features in a > custom input format we're building and are considering the

Re: Adding a virtual column for a custom input format

2020-05-06 Thread Mich Talebzadeh
Hi Christine. Virtual column meaning a derived column? can you achieve this by creating a view on Hive table? HTH Dr Mich Talebzadeh LinkedIn * https://www.linkedin.com/profile/view?id=AAEWh2gBxianrbJd6zP6AcPCCdOABUrV8Pw

Adding a virtual column for a custom input format

2020-05-06 Thread Christine Mathiesen
Hello! I'm hoping someone can help me shed some light on how Hive deals with virtual columns. We are trying to implement some time travel features in a custom input format we're building and are considering the approach of adding a virtual column, but I haven't been able to find much