()
| 76 | return operationColor(operation).Sprintf(" %-16s ", operation) |
| 77 | } |
| 78 | func formatFileLine() string { |
| 79 | _, file, line := funcFileLine("pkg/clickhouse") |
| 80 | return fmt.Sprintf("%s:%d", file, line) |
| 81 | } |
| 82 | func operationColor(operation string) *color.Color { |
| 83 | switch operation { |
| 84 | case "SELECT": |
no test coverage detected
searching dependent graphs…