(length int)
| 67 | } |
| 68 | |
| 69 | func buildPreparedValues(length int) []string { |
| 70 | values := make([]string, length) |
| 71 | for i := 0; i < length; i++ { |
| 72 | values[i] = "?" |
| 73 | } |
| 74 | return values |
| 75 | } |
| 76 | |
| 77 | func duplicateNames(names []string) []string { |
| 78 | duplicate := make([]string, len(names)) |
no outgoing calls
no test coverage detected
searching dependent graphs…