Sylvain Joubert
Sylvain Joubert
When using iterator (either old style begin()/end() or through a range-for loop) the value returned by `n_rows()` is off by 1. This does not happen when using the `read_row` pattern...
I've got the following content in the "Missing Buillds" email we receive: ``` The following expected build(s) for the project ** didn't submit yesterday: * https:///ajax/index.php?project= -CDash on ``` It...
I use the library (as a client) against an API that makes use of [Trailing headers](https://developer.mozilla.org/fr/docs/Web/HTTP/Headers/Trailer) in some of its chunked responses. The current code does not handle that case...
If a line is longer than `ITERATION_CHUNK_SIZE` (corner case, but unfortunately large dataset happen in the wild), `CSVReader::read_row` will loop forever, spawning `read_csv` thread infinitely. For now I've patched this...
The QCH file/database is missing all the files from the `common/` folder, only the `en/` folder is packaged. This folder is quite important as it contains some Javascript, but also...
The current NEWLINE behavior of reading as much CR/LF as possible basically means empty rows are/should be ignored. This fixes the issue of pushing an empty row that can occur...
The sort option of the labels summary (in viewCoverage.php) uses alphetical order instead of numerical order for the percentage. This leads to labels having 100% coverage being placed in the...