(sql string, loc oracleast.Loc)
| 398 | } |
| 399 | |
| 400 | func extractOmniStatementText(sql string, loc oracleast.Loc) string { |
| 401 | return strings.TrimSpace(strings.TrimSuffix(oracleLocText(sql, loc.Start, loc.End), ";")) |
| 402 | } |
| 403 | |
| 404 | func zeroBasedColumnPosition(pos *store.Position) *store.Position { |
| 405 | if pos == nil { |
no test coverage detected