bziobrowski opened a new pull request, #14388:
URL: https://github.com/apache/pinot/pull/14388

   At the moment exceptions thrown during query execution are often missing 
basic table and column information, making it hard diagnose issues. 
   
   For example, if  dat is a string column containing dates then issuing 
following query :
   ```sql
   select key , max(dat) as last_seen_date 
   from table
   group by key
   limit 10
   ```
   might return 
   `NumberFormatException: For input string: "2021-10-01T09:01:00-0800"`.
   
   This PR adds table/alias and column/expression information to conversion 
errors, e.g. 
   
   Error when processing table.dat: NumberFormatException: For input string: 
"2021-10-01T09:01:00-0800".
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to