(values []interface{})
| 15 | } |
| 16 | |
| 17 | func convertToStringArray(values []interface{}) []string { |
| 18 | result := make([]string, len(values)) |
| 19 | for i, v := range values { |
| 20 | result[i] = fmt.Sprintf("%v", v) |
| 21 | } |
| 22 | return result |
| 23 | } |
| 24 | |
| 25 | func extractValueForSQL(value interface{}) interface{} { |
| 26 | if tsVal, ok := value.(TimestampValue); ok { |
no outgoing calls
no test coverage detected