extractTableAndColumn

This commit is contained in:
Hein 2025-12-10 10:10:55 +02:00
parent 4ed1fba6ad
commit c696d502c5

View File

@ -471,9 +471,10 @@ func findOperatorOutsideParentheses(s string, operator string) int {
} }
// Track parenthesis depth // Track parenthesis depth
if ch == '(' { switch ch {
case '(':
depth++ depth++
} else if ch == ')' { case ')':
depth-- depth--
} }