mirror of
https://github.com/bitechdev/ResolveSpec.git
synced 2026-01-09 04:54:25 +00:00
extractTableAndColumn
This commit is contained in:
@@ -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--
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user