The query below: ``` row foo = 10 | stats this = max(foo) | eval this = 2 ``` produces the following result: ``` | this ---------------+--------------- null |2 ``` This result includes a `null` column with an empty name, which is not expected and should not exist.