in 'normal' sql queries, I can use an aggregate fu...
# general
j
in 'normal' sql queries, I can use an aggregate function with * to select all columns:
Copy code
select sum(a+b), * from my_table
pinot query browser gives an error when I try this -- is there another way without specifically listing all the columns?
j
Currently pinot doesn't support mixing wildcard with other columns. Can you please create a github issue for this?
Contributions are very welcome
x
this is not a valid sql though, unless you group by all the columns(*)
j
Yes,
select a + b, * from myTable
is valid
👍 1