Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions src/fread.c
Original file line number Diff line number Diff line change
Expand Up @@ -1730,8 +1730,10 @@
topQuoteRule = quoteRule;
firstJumpEnd = ch; // to know how many bytes jump 0 is, for nrow estimate later (a less-good estimate when fill=true since line lengths vary more)
if (verbose) {
DTPRINT((unsigned)sep<32 ? " sep=%#02x" : " sep='%c'", sep); // # notranslate
DTPRINT(_(" with %d fields using quote rule %d\n"), topNumFields, quoteRule);
DTPRINT((unsigned)sep<32
? _(" sep=%#02x with %d fields using quote rule %d\n")

Check warning on line 1734 in src/fread.c

View check run for this annotation

Codecov / codecov/patch

src/fread.c#L1734

Added line #L1734 was not covered by tests
: _(" sep='%c' with %d fields using quote rule %d\n"),
sep, topNumFields, quoteRule);
}
}
} else {
Expand Down Expand Up @@ -1780,8 +1782,10 @@
topSkip = thisRow-thisBlockLines;
if (topSkip<0) topSkip=0; // inelegant but will do for now to pass single row input such as test 890
if (verbose) {
DTPRINT((unsigned)sep<32 ? " sep=%#02x" : " sep='%c'", sep); // # notranslate
DTPRINT(_(" with %d lines of %d fields using quote rule %d\n"), topNumLines, topNumFields, topQuoteRule);
DTPRINT((unsigned)sep<32
? _(" sep=%#02x with %d lines of %d fields using quote rule %d\n")

Check warning on line 1786 in src/fread.c

View check run for this annotation

Codecov / codecov/patch

src/fread.c#L1786

Added line #L1786 was not covered by tests
: _(" sep='%c' with %d lines of %d fields using quote rule %d\n"),
sep, topNumLines, topNumFields, topQuoteRule);
}
}
}
Expand Down
Loading