Re: [PR] Handle DUAL SQL Queries without NullPointerException in JDBC [pinot]

2024-08-19 Thread via GitHub
Jackie-Jiang merged PR #13846: URL: https://github.com/apache/pinot/pull/13846 -- 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: commits-unsubscr...@pinot

Re: [PR] Handle DUAL SQL Queries without NullPointerException in JDBC [pinot]

2024-08-19 Thread via GitHub
codecov-commenter commented on PR #13846: URL: https://github.com/apache/pinot/pull/13846#issuecomment-2296827664 ## [Codecov](https://app.codecov.io/gh/apache/pinot/pull/13846?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&u

[PR] Handle DUAL SQL Queries without NullPointerException in JDBC [pinot]

2024-08-19 Thread via GitHub
vrajat opened a new pull request, #13846: URL: https://github.com/apache/pinot/pull/13846 JDBC clients parse queries to extract tables and choose the right broker. However the clients do not handle queries with no FROM clause. The clients work because of two catch-all blocks. Fix the