(querySQL string)
| 10 | ) |
| 11 | |
| 12 | func buildCountSQL(querySQL string) string { |
| 13 | return selectFromRegexp.ReplaceAllString(querySQL, "SELECT count(*) FROM") |
| 14 | } |
| 15 | |
| 16 | func buildSQLWithConds(querySQL, countSQL string, conds []string) (newQuerySQL, newCountSQL string) { |
| 17 | whereSQL := "" |
no outgoing calls
no test coverage detected