pull_requests
2 rows where user = 167164
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
265216508 | MDExOlB1bGxSZXF1ZXN0MjY1MjE2NTA4 | 2855 | closed | 0 | Add note about integer compression precision | naught101 167164 | 16 bit integer compression is pretty lossy, by my calculations. Probably good enough for a lot of cases, but worth warning about. - [x] documentation changes only. | 2019-03-28T07:34:02Z | 2019-07-19T17:53:42Z | 2019-07-19T17:53:42Z | 974c65f8512aee8321bc6ef5cf9668c876f1caca | 0 | bc380b2872fd84efd5e9ee4ba93626527e9f6c47 | fbe53fe2a35b3eeda63e50f1f38c7cfc92134a0c | FIRST_TIME_CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/2855 | |||||
690585828 | MDExOlB1bGxSZXF1ZXN0NjkwNTg1ODI4 | 5607 | open | 0 | Add option to pass callable assertion failure message generator | naught101 167164 | It is nice to be able to write custom assertion error messages on failure sometimes. This allows that with the array comparison assertions, by allowing a `fail_func(a, b)` callable to be passed in to each assertion function. Not tested yet, but I'm happy to add tests if this is something that would be appreciated. - [ ] Tests added - [ ] Passes `pre-commit run --all-files` - [ ] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [ ] New functions/methods are listed in `api.rst` | 2021-07-15T10:17:42Z | 2022-10-12T20:03:32Z | 69b9b7ab8cddf0b570e2811c8a22c68df3b4caab | 0 | fe39e36e526897d44f3144c63eebd919797a55b5 | d1e4164f3961d7bbb3eb79037e96cae14f7182f8 | FIRST_TIME_CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/5607 |
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]);