Suraj
04/16/2020, 10:07 PMSuraj
04/16/2020, 10:08 PMcurl -X GET --header 'Accept: application/json' '<http://localhost:8099/debug/routingTable/serviceCallView>'
Suraj
04/16/2020, 10:08 PMXiang Fu
Xiang Fu
Xiang Fu
Suraj
04/16/2020, 10:37 PMDan Hill
04/27/2020, 4:58 PMTOP 10000
automatically to a Pinot query and it's failing.Kishore G
Kishore G
Dan Hill
04/27/2020, 5:07 PMDan Hill
04/27/2020, 5:07 PMCaused by: org.apache.calcite.sql.parser.babel.ParseException: Encountered "TOP" at line 1, column 114.
Was expecting one of:
<EOF>
"ORDER" ...
"LIMIT" ...
"OFFSET" ...
"FETCH" ...
"," ...
"." ...
"NOT" ...
"IN" ...
"<" ...
"<=" ...
">" ...
">=" ...
"=" ...
"<>" ...
"!=" ...
"BETWEEN" ...
"LIKE" ...
"SIMILAR" ...
"+" ...
"-" ...
"*" ...
"/" ...
"%" ...
"||" ...
"AND" ...
"OR" ...
"IS" ...
"MEMBER" ...
"SUBMULTISET" ...
"CONTAINS" ...
"OVERLAPS" ...
"EQUALS" ...
"PRECEDES" ...
"SUCCEEDS" ...
"IMMEDIATELY" ...
"MULTISET" ...
"[" ...
"HAVING" ...
"WINDOW" ...
"UNION" ...
"INTERSECT" ...
"EXCEPT" ...
"MINUS" ...
"(" ...
Neha Pawar
Kishore G
Xiang Fu
select count(*) from table group by a
to pinot, which expected 1 column back from pinot results, but pinot gives twoXiang Fu
Kishore G
Xiang Fu
Xiang Fu
Dan Hill
04/27/2020, 6:47 PMTOP
is automatically created by Presto.Dan Hill
04/27/2020, 6:49 PMLIMIT
instead.Xiang Fu
select count(*) from table group by col
in prestoDan Hill
04/27/2020, 10:48 PMDan Hill
04/27/2020, 10:48 PMselect col, count(*) from table group by col
, it worksDan Hill
04/27/2020, 10:48 PMDan Hill
04/27/2020, 10:49 PMjava.lang.ArrayIndexOutOfBoundsException: 1
Xiang Fu
Xiang Fu
Damiano
04/28/2020, 10:53 PMKishore G