-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Throw an error when an invalid expression is used with aux iterators
The following query was fixed previously: SELECT 'value' FROM cpu This ended up hitting the `buildExprIterator()` code path and was handled properly. But this query: SELECT 'value', value FROM cpu This took a different code path that would trigger a panic because it triggered a panic instead of an error condition. This code path has now been modified to trigger an error instead of a panic. Fixes #6248.
- Loading branch information
1 parent
99715ec
commit d176c8b
Showing
3 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters