pull_requests
1 row where user = 19578931
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_at (date), merged_at (date)
id ▼ | node_id | number | state | locked | title | user | body | created_at | updated_at | closed_at | merged_at | merge_commit_sha | assignee | milestone | draft | head | base | author_association | auto_merge | repo | url | merged_by |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
448511050 | MDExOlB1bGxSZXF1ZXN0NDQ4NTExMDUw | 4221 | closed | 0 | Change isinstance checks to duck Dask Array checks #4208 | rpmanser 19578931 | - [X] Closes #4208 - [x] Tests added - [x] Passes `isort -rc . && black . && mypy . && flake8` I added the discussed `is_duck_dask_array(x)` function and replaced `isinstance(x, dask_array_type)` checks with `is_duck_dask_array(x)`. Existing tests are passing. I did not change `isinstance(x, dask_array_type)` checks in the testing modules since I am unsure if that is appropriate. As for additional tests, I am leaning towards testing Xarray ( Pint ( Dask ) ) ) objects as implemented in upcoming Pint v0.15 rather than a mock class, but I am open to discussion. I am unfamiliar with the release schedules of Pint and Xarray but I imagine that would influence which direction the testing should go. | 2020-07-13T21:39:46Z | 2020-09-02T18:32:45Z | 2020-09-02T18:28:12Z | 2020-09-02T18:28:12Z | dc2dd89b999b16e08ba51e9cf623896b01be7297 | 0 | 4e7409c94f4261df07b8e7d720dd00f5f7a27901 | 55480de69096cc5ae003f639c2c953066e829120 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/4221 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [pull_requests] ( [id] INTEGER PRIMARY KEY, [node_id] TEXT, [number] INTEGER, [state] TEXT, [locked] INTEGER, [title] TEXT, [user] INTEGER REFERENCES [users]([id]), [body] TEXT, [created_at] TEXT, [updated_at] TEXT, [closed_at] TEXT, [merged_at] TEXT, [merge_commit_sha] TEXT, [assignee] INTEGER REFERENCES [users]([id]), [milestone] INTEGER REFERENCES [milestones]([id]), [draft] INTEGER, [head] TEXT, [base] TEXT, [author_association] TEXT, [auto_merge] TEXT, [repo] INTEGER REFERENCES [repos]([id]), [url] TEXT, [merged_by] INTEGER REFERENCES [users]([id]) ); CREATE INDEX [idx_pull_requests_merged_by] ON [pull_requests] ([merged_by]); CREATE INDEX [idx_pull_requests_repo] ON [pull_requests] ([repo]); CREATE INDEX [idx_pull_requests_milestone] ON [pull_requests] ([milestone]); CREATE INDEX [idx_pull_requests_assignee] ON [pull_requests] ([assignee]); CREATE INDEX [idx_pull_requests_user] ON [pull_requests] ([user]);