Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Fil committed Mar 21, 2024
1 parent fd24c95 commit f3fc61b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -571,8 +571,8 @@ function columnar(data, name, type) {
return isArrowTable(data) ? maybeTypedArrayify(data.getChild(name), type) : maybeTypedMap(data, field(name), type);
}

// Arrayify” but for Arrow tables. We try to avoid materializing the values,
// but the Proxy might be used by the group reducer to construct groupData.
// Arrayify arrow tables. We try to avoid materializing the values, but the
// Proxy might be used by the group reducer to construct groupData.
function arrowTableProxy(data) {
return new Proxy(data, {
get(target, prop) {
Expand Down

0 comments on commit f3fc61b

Please sign in to comment.