(sql string, start int, where oracleast.ExprNode)
| 344 | } |
| 345 | |
| 346 | func oracleWhereSuffix(sql string, start int, where oracleast.ExprNode) string { |
| 347 | loc, ok := oracleNodeLoc(where) |
| 348 | if !ok { |
| 349 | return "" |
| 350 | } |
| 351 | return oracleDMLTrailingText(sql, start, loc.End) |
| 352 | } |
| 353 | |
| 354 | func oracleNodeLoc(node oracleast.Node) (oracleast.Loc, bool) { |
| 355 | if node == nil { |
no test coverage detected