mirror of
https://github.com/bitechdev/ResolveSpec.git
synced 2025-12-13 17:10:36 +00:00
extractTableAndColumn
This commit is contained in:
parent
4ed1fba6ad
commit
c696d502c5
@ -471,9 +471,10 @@ func findOperatorOutsideParentheses(s string, operator string) int {
|
||||
}
|
||||
|
||||
// Track parenthesis depth
|
||||
if ch == '(' {
|
||||
switch ch {
|
||||
case '(':
|
||||
depth++
|
||||
} else if ch == ')' {
|
||||
case ')':
|
||||
depth--
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user