-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc8d957
commit c8062d8
Showing
3 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
### db-by-checksum.json | ||
DBs grouped by <filename, MD5 checksum> then sorted by <expansion, build>. | ||
```csharp | ||
public class ChecksumGroup | ||
{ | ||
public string Name; | ||
public Dictionary<string, string[]> Builds; // <checksum, builds> | ||
} | ||
``` | ||
|
||
### db-row-match | ||
(In progress) Comparison of matching rows (at byte level) between two builds. DBs grouped by filename, sorted by <expansion, build>. <Legion only. | ||
```csharp | ||
public class DBDMatchGroup | ||
{ | ||
public string BuildPrev; | ||
public string BuildCur; | ||
public int RecordCountPrev; | ||
public int RecordCountCur; | ||
public int MatchCount; | ||
public float MatchCountPercent; | ||
} | ||
``` |
Binary file not shown.
Binary file not shown.