Here is the actual query:
| pivot data_model_name object_name avg(response_time) AS "Average of response_time" SPLITROW _time AS _time PERIOD hour SPLITCOL somefield1 FILTER somefield2 is yes FILTER somefield3 isNot Unknown SORT 0 _time ROWSUMMARY 0 COLSUMMARY 0 NUMCOLS 0 SHOWOTHER 0
Running the query for individual date range:
Day 1: SPLITCOL somefield1 table has values a,b,c,d
Day 2: SPLITCOL somefield1 table has values a,b,d
Day 3: SPLITCOL somefield1 table has values a,c,d
Running the query for last 3 days date range: I get results only for column a and d.
Columns b and c are not appearing the end result.
Updating the NUMCOLS to a non-zero value shows all column values a,b,c and d in the final results table.
| pivot data_model_name object_name avg(response_time) AS "Average of response_time" SPLITROW _time AS _time PERIOD hour SPLITCOL somefield1 FILTER somefield2 is yes FILTER somefield3 isNot Unknown SORT 0 _time ROWSUMMARY 0 COLSUMMARY 0 **NUMCOLS 1000** SHOWOTHER 0
Is this a bug in pivot?
↧