Fix 10+ parser tests with various improvements#41
Merged
kyleconroy merged 1 commit intomainfrom Dec 25, 2025
Merged
Conversation
- Add SelectIntersectExceptQuery AST type for INTERSECT/EXCEPT operations - Support nested multiline comments in lexer - Add FROM INFILE and COMPRESSION fields to InsertQuery - Improve nested array literal handling in EXPLAIN output - Combine tuple literals in IN expressions - Fix substr function name (should not be normalized to substring) - Fix WITH clause element handling for empty aliases - Remove incorrect pow -> power normalization Enabled tests: - 02316_const_string_intersact (INTERSECT query) - 00021_3_select_with_in (IN tuple) - 02503_in_lc_const_args_bug (substr) - 01471_with_format (WITH without alias) - 00020_sorting_arrays (nested array literal) - 00559_filter_array_generic - 01491_nested_multiline_comments - 02264_format_insert_infile - 02264_format_insert_compression - 01774_tuple_null_in - Several other tests fixed by these changes
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Enabled tests: