When selecting two columns from a dataset, the result has the two given column titles as expected. But when only specifying one column, the one resulting column loses it's title, instead, it is titled "0":
This makes it hard to use $order or whatever in later steps that take column names.
That is, this will work
(with-data data
(->> ($ [:foo :bar])
($order [:foo] :asc)
(view)))
and this will fail
(with-data data
(->> ($ [:foo])
($order [:foo] :asc)
(view)))
Any ideas what is going wrong or what to do?