(m map[string][]*EdgeSpec)
| 2020 | } |
| 2021 | |
| 2022 | func edgeKeys(m map[string][]*EdgeSpec) []string { |
| 2023 | keys := make([]string, 0, len(m)) |
| 2024 | for k := range m { |
| 2025 | keys = append(keys, k) |
| 2026 | } |
| 2027 | sort.Strings(keys) |
| 2028 | return keys |
| 2029 | } |
| 2030 | |
| 2031 | func insertKeys(m map[string]*sql.InsertBuilder) []string { |
| 2032 | keys := make([]string, 0, len(m)) |
no test coverage detected
searching dependent graphs…