-
Notifications
You must be signed in to change notification settings - Fork 37
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
WIP: custom row-metadata (#260) #328
Conversation
Happy to add some tests as well, something along the lines of the examples I supplied? |
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.
Thanks, the code looks good. Could you please add a snapshot test?
rowid_width <- 0L | ||
} else { | ||
rowid_width <- get_cell_widths(rowid) |
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.
Should get_cell_widths(NULL)
return 0L
, to simplify this code?
return(NULL) | ||
} | ||
|
||
if (is_false(has_row_id)) { |
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.
I wonder if this should be picked up by the methods instead?
This has conflicts now, unfortunately. |
Done in #550. |
Ad #260