home / github

Menu
  • GraphQL API
  • Search all tables

pull_requests

Table actions
  • GraphQL API for pull_requests

6 rows where user = 1970404

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: base, 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
205317142 MDExOlB1bGxSZXF1ZXN0MjA1MzE3MTQy 2333 closed 0 Let test_unicode_data pass on big-endian systems too ginggs 1970404 - [ ] Tests added (for all bug fixes or enhancements) - [ ] Tests passed (for all non-documentation changes) 2018-08-01T06:03:13Z 2018-08-02T05:58:40Z 2018-08-02T02:18:03Z 2018-08-02T02:18:03Z 56381ef444c5e699443e8b4e08611060ad5c9507     0 064ea43a876630af276d580d8edec57b0e112ad7 c86810b5ab3fc1cd47c1c0ed07e002b797b27eaf CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/2333  
205324439 MDExOlB1bGxSZXF1ZXN0MjA1MzI0NDM5 2334 closed 0 XFAIL tests failing on ARM ginggs 1970404 These tests are expected to fail on ARM due to the following issue in NumPy: https://github.com/numpy/numpy/issues/8325 - [ ] Tests added (for all bug fixes or enhancements) - [ ] Tests passed (for all non-documentation changes) 2018-08-01T06:49:19Z 2019-07-15T19:20:24Z 2019-07-15T18:57:31Z 2019-07-15T18:57:31Z 3ceb0380eeda2ed132af44b16bbb8ab4b2c678c9     0 c5008c26b0fe3f87730967c0ce96625c91a81414 4cbe635488a16c133cb22bc50c13c89cd3607e38 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/2334  
297408201 MDExOlB1bGxSZXF1ZXN0Mjk3NDA4MjAx 3125 closed 0 Fix tests on big-endian systems ginggs 1970404 <!-- Feel free to remove check-list items aren't relevant to your change --> - [ ] Tests added - [ ] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API 2019-07-14T16:00:58Z 2019-07-15T20:12:59Z 2019-07-15T18:57:54Z 2019-07-15T18:57:54Z 3c05a203e4de5c1345cd10fdc336a9f729b1a633     0 66fa2a730b2bde62c97e9819d766c1f59cb028eb 4cbe635488a16c133cb22bc50c13c89cd3607e38 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/3125  
297769412 MDExOlB1bGxSZXF1ZXN0Mjk3NzY5NDEy 3135 closed 0 Update whats-new for #3125 and #2334 ginggs 1970404 2019-07-15T20:11:50Z 2019-07-15T20:26:11Z 2019-07-15T20:15:23Z 2019-07-15T20:15:23Z 539fb4a98d0961c281daa5474a8e492a0ae1d8a2     0 390f951a2297fe69754e5ce607e0e4cefc54f864 3c05a203e4de5c1345cd10fdc336a9f729b1a633 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/3135  
376121675 MDExOlB1bGxSZXF1ZXN0Mzc2MTIxNjc1 3772 closed 0 Let test_repr_of_dataset pass on big-endian systems ginggs 1970404 <!-- Feel free to remove check-list items aren't relevant to your change --> - [ ] Closes #xxxx - [ ] Tests added - [ ] Passes `isort -rc . && black . && mypy . && flake8` - [ ] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API 2020-02-17T12:55:47Z 2020-02-23T19:39:40Z 2020-02-23T19:39:40Z 2020-02-23T19:39:40Z 58b11a63732e3066ad38dc1e63a733f4cce6425f     0 64273babbd50d9960968143f3af7dba1a5af2703 1eefcdcdf0c18745b7858331af8e89bde8626b65 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/3772  
1053863084 PR_kwDOAMm_X84-0Kys 7026 closed 0 Allow test_indexes to pass on big-endian systems ginggs 1970404   2022-09-12T20:42:39Z 2022-09-14T19:07:07Z 2022-09-12T22:12:21Z 2022-09-12T22:12:21Z 1afba66cc7e2a3f916c48ee24bb131d6b77f9eac     0 04b957dc750de996704f1a3933d0004ff78595e0 b018442c8dfa3e71ec35e294de69e2011949afec CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/7026  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 29.122ms · About: xarray-datasette