We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f3d514 commit 23c4922Copy full SHA for 23c4922
tests/sqlparser_snowflake.rs
@@ -2762,7 +2762,9 @@ fn parse_view_column_descriptions() {
2762
2763
#[test]
2764
fn test_parentheses_overflow() {
2765
- let max_nesting_level: usize = 30;
+ // TODO: increase / improve after we fix the recursion limit
2766
+ // for real (see https://github.com/apache/datafusion-sqlparser-rs/issues/984)
2767
+ let max_nesting_level: usize = 25;
2768
2769
// Verify the recursion check is not too wasteful... (num of parentheses - 2 is acceptable)
2770
let slack = 2;
0 commit comments