-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DM-46970: Handle None values in table mode #79
Conversation
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found.
Additional details and impacted files@@ Coverage Diff @@
## main #79 +/- ##
==========================================
- Coverage 87.99% 87.97% -0.02%
==========================================
Files 37 37
Lines 3106 3144 +38
Branches 413 414 +1
==========================================
+ Hits 2733 2766 +33
- Misses 258 260 +2
- Partials 115 118 +3 ☔ View full report in Codecov by Sentry. |
7c4c72a
to
9b77edd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, one minor question.
If a translation fails we still need to be able to display the table contents.
c028661
to
e9b5886
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, a couple of questions. One test is failing probably because table header is centered?
b0fd641
to
1616c8f
Compare
This requires that column data be accumulated during file reads rather than being output as each file is encountered.
Now that the output table accumulates rather than having the row printed instantly, batch up table output and dump it every few hundred entries. Without this it's possible people could be waiting a long time with no output appearing and eating up lots of memory.
1616c8f
to
cdace0b
Compare
If a translation fails we still need to be able to display the table contents.