(selectStmt *oracleast.SelectStmt)
| 269 | } |
| 270 | |
| 271 | func rightmostOracleSetSelect(selectStmt *oracleast.SelectStmt) *oracleast.SelectStmt { |
| 272 | if selectStmt.Op != oracleast.SETOP_NONE && selectStmt.Rarg != nil { |
| 273 | return rightmostOracleSetSelect(selectStmt.Rarg) |
| 274 | } |
| 275 | return selectStmt |
| 276 | } |
| 277 | |
| 278 | func rewriteOracleFetchClause(sql string, fetch *oracleast.FetchFirstClause, limitCount int) (string, error) { |
| 279 | if fetch.Count == nil { |
no outgoing calls
no test coverage detected