Forum Discussion
pivot problem
Hi,
I am not sure what you are trying to achieve. For me it is normal that you get error because if there are no results there is nothing to evaluate. Is there any particular use case you are trying to achieve? Can you elaborate more on what end result you want to get if there is no data? Why resulting an error if there is no data a problem?
- Patrick NaughtonFeb 12, 2019Brass ContributorWhat would be normal would be to get no results, without error, since the input to the evaluate is empty. It should short circuit the pipeline. The use case is, when there are rows available to the evaluate pivot, it works, and when there aren’t it returns [] without error.
- Feb 12, 2019
Ok. I cannot quite get the use case as from math point of view this is working fine. I would assume you can implement some logic in your queries to check first if you have any rows returned at all do the evaluation but if you do not have return something else. Other option is if you do not have results to populate some dummy results so the evaluation operation can have something to work with. If you have to implement that in every query won't be pretty though. You can probably also do a union with dymmy values to make sure you have something to work with. If anyone else can propose a better solution I would be happy to hear it
- Patrick NaughtonFeb 13, 2019Brass ContributorI’m aware of the workarounds. I can declare scalar variables of the same names as the columns I know will pivot out of the data. I’m suggesting that the language itself should not require this because it could short circuit when the pipeline has no rows in it. As I’ve pointed out in other posts, evaluate pivot is a fragile function.