shouldSkipLimit checks if the statement needs a limit clause
(stmt string)
| 172 | |
| 173 | // shouldSkipLimit checks if the statement needs a limit clause |
| 174 | func shouldSkipLimit(stmt string) bool { |
| 175 | ok, err := skipAddLimit(stmt) |
| 176 | return err == nil && ok |
| 177 | } |
| 178 | |
| 179 | // isOracle11gOrEarlier checks if the Oracle version is 11g or earlier |
| 180 | func isOracle11gOrEarlier(engineVersion string) bool { |
no test coverage detected