(db *sql.DB, runID, filePath string)
| 842 | } |
| 843 | |
| 844 | func runtimeEdgesForFile(db *sql.DB, runID, filePath string) ([]ExplainGraphEdge, error) { |
| 845 | return runtimeEdgesWhere(db, `run_id = ? AND (from_id = ? OR to_id = ?)`, runID, "workspace_file/"+filePath, "workspace_file/"+filePath) |
| 846 | } |
| 847 | |
| 848 | func runtimeEdgesForID(db *sql.DB, id string) ([]ExplainGraphEdge, error) { |
| 849 | if id == "" { |
no test coverage detected