(a []bool)
| 580 | } |
| 581 | |
| 582 | func BoolArrayToInterfaceArray(a []bool) []interface{} { |
| 583 | l := make([]interface{}, 0) |
| 584 | for _, i := range a { |
| 585 | l = append(l, i) |
| 586 | } |
| 587 | return l |
| 588 | } |
| 589 | |
| 590 | func GetScheduledJobHash(schedule postgresqlDb.Scheduler) string { |
| 591 | var payload map[string]string |
nothing calls this directly
no outgoing calls
no test coverage detected