pull_requests
3 rows where user = 6574622
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
463362120 | MDExOlB1bGxSZXF1ZXN0NDYzMzYyMTIw | 4312 | closed | 0 | allow manual zarr encoding on unchunked dask dimensions | d70-t 6574622 | If a dask array is chunked along one dimension but not chunked along another, any manually specified zarr chunk size should be valid, but before this patch, this resulted in an error. - [x] Tests added - [x] Passes `isort . && black . && mypy . && flake8` (only for modified sections) - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` | 2020-08-05T12:49:04Z | 2022-02-09T09:31:51Z | 2020-08-19T14:58:09Z | 2020-08-19T14:58:09Z | a3f0042921be8b55cda9bbbdea2d42d5496d64ce | 0 | 373de8e4f8b5be458a18a30133129c6c6b0576e1 | a7fb5a9fa1a2b829181ea9e4986b959f315350dd | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/4312 | ||||
580817449 | MDExOlB1bGxSZXF1ZXN0NTgwODE3NDQ5 | 4966 | closed | 0 | conventions: decode unsigned integers to signed if _Unsigned=false | d70-t 6574622 | netCDF3 doesn't know unsigned while OPeNDAP doesn't know signed (bytes). Depending on which backend source is used, the original data is stored with the wrong signedness and needs to be decoded based on the _Unsigned attribute. While the netCDF3 variant is already implemented, this commit adds the symmetric case covering OPeNDAP. - [x] Closes #4954 - [x] Tests added - [x] Passes `pre-commit run --all-files` - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` | 2021-02-26T12:05:51Z | 2021-03-12T14:21:12Z | 2021-03-12T14:20:20Z | 2021-03-12T14:20:19Z | d4b7a608bab0e7c140937b0b59ca45115d205145 | 0 | c5c34eef5a63d655b0b412798f54c59a0ef06856 | 37522e991a32ee3c0ad1a5ff8afe8e3eb1885550 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/4966 | ||||
843861565 | PR_kwDOAMm_X84yTE49 | 6258 | closed | 0 | removed check for last dask chunk size in to_zarr | d70-t 6574622 | When storing a dask-chunked dataset to zarr, the size of the last chunk in each dimension does not matter, as this single last chunk will be written to any number of zarr chunks, but none of the zarr chunks which are being written to will be accessed by any other dask chunk. <!-- Feel free to remove check-list items aren't relevant to your change --> - [x] Closes #6255 - [x] Tests added - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` cc'ing @rabernat who seems to have worked on this lately. | 2022-02-09T12:34:43Z | 2022-02-09T15:13:21Z | 2022-02-09T15:12:32Z | 2022-02-09T15:12:31Z | 44a3e3bb76fc1266cbaef6e6fa84fa0c146af846 | 0 | 1e6926b1acf13e0c03575292271ea12e82adb3bf | 48290fa14accd3ac87768d3f73d69493b82b0be6 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/6258 |
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]);