tspurway / hustle

A column oriented, embarrassingly distributed relational event database.
Other
240 stars 36 forks source link

Ability to alias column or aggregate functions #16

Closed tspurway closed 10 years ago

tspurway commented 10 years ago

We need to support the following type of column aliasing:

select(table.column.alias('newname'), table.col2, h_sum(table.col3).alias('anothername'), ...

In the result schema, the columns will be called: newname, col2, anothername