Query.jl icon indicating copy to clipboard operation
Query.jl copied to clipboard

@join on columns of the same name

Open mcabbott opened this issue 6 years ago • 0 comments
trafficstars

It would be neat if it wasn't necessary to repeat the name of the columns on which you are joining, when they are the same:

@join(foo, bar, _.joincolumn, _.joincolumn, {_.other, __.also})

Right now the macro seems to just go by the number of arguments, so omitting one tries to create a function for foo |> @join(bar, ... use, but perhaps it could look at what it gets before deciding?

mcabbott avatar Mar 15 '19 23:03 mcabbott