pull_requests
2 rows where user = 1700203
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
271482280 | MDExOlB1bGxSZXF1ZXN0MjcxNDgyMjgw | 2905 | closed | 0 | Use explicit type check in `as_compatible_data` instead of blanket access to `values` attribute | blsqr 1700203 | This change was prompted by the fact that `getattr(data, 'values', data)` affected any kind of data with a `values` attribute, which is not the desired behaviour for `core.variable.as_compatible_data`. This also extends tests to assert that custom objects with such an attribute are not attempted to be converted. I'm happy to write additional tests, if you could briefly sketch further requirements. - [x] Implemented the changes - [x] Closes #2097 - [x] Tests added - [ ] Sufficient? - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API | 2019-04-17T21:52:37Z | 2021-02-18T17:22:16Z | 2021-02-18T15:04:14Z | 2021-02-18T15:04:14Z | c9b9eec73a033e275b6012e7d391dd42591ccf52 | 0 | ad71bb2da711434989f872531c220c3bbe9374d5 | 7c4e2ac83f7b4306296ff9b7b51aaf016e5ad614 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/2905 | ||||
412081018 | MDExOlB1bGxSZXF1ZXN0NDEyMDgxMDE4 | 4018 | closed | 0 | Add NetCDF3 dtype coercion for unsigned integer types | blsqr 1700203 | This PR addresses #4014. - [x] Closes #4014 - [x] Tests added or adjusted - [x] Adjusted a test case where `int64` coercion played a role - [x] Explicit test for failing coercion (seems to be missing currently -- should this be added?) - [x] Passes `isort -rc . && black . && mypy . && flake8` - [x] Fully documented - [x] Adjusted `whats-new.rst` for all changes ~~and `api.rst` for new API~~ | 2020-05-01T10:38:45Z | 2020-07-13T15:37:51Z | 2020-05-20T17:08:24Z | 2020-05-20T17:08:23Z | 5c04ebfde12a70913d28ffa70e9e13c0b992dfa9 | 0 | 879d62a0e9d881b57e54ffa61992f7e4dd9646c2 | 69548df9826cde9df6cbdae9c033c9fb1e62d493 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/4018 |
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]);