home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 23487320

✎ View and edit SQL

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
441745540 MDExOlB1bGxSZXF1ZXN0NDQxNzQ1NTQw 4187 closed 0 Xarray open_mfdataset with engine Zarr weiji14 23487320 <!-- Feel free to remove check-list items aren't relevant to your change --> Work on enabling `xr.open_dataset(..., engine="zarr")`, to ~~replace~~ complement `xr.open_zarr`. This also allows `xr.open_mfdataset(..., engine="zarr") to be used. Note: Credit should be given to @Mikejmnez, I'm just continuing this on from #4003. - [x] Closes #3668, closes #4003 - [x] Tests added - [x] Passes `isort -rc . && black . && mypy . && flake8` - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` 2020-06-30T02:32:07Z 2020-09-22T15:08:36Z 2020-09-22T05:40:31Z 2020-09-22T05:40:31Z 5654aee927586c2dcbc3f34d674ed5c9646326c1     0 48dae50cbaf56aa6bf4244b1976da13e65ce62b8 1155f5646e07100e4acda18db074b148f1213b5d CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/4187  
1130410389 PR_kwDOAMm_X85DYLGV 7304 closed 0 Reset file pointer to 0 when reading file stream weiji14 23487320 Instead of raising a ValueError about the file pointer not being at the start of the file, reset the file pointer automatically to zero, and warn that the pointer has been reset. <!-- Feel free to remove check-list items aren't relevant to your change --> - [ ] Closes #6813 - [ ] Tests added - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [ ] New functions/methods are listed in `api.rst` 2022-11-21T17:51:28Z 2022-12-01T16:28:01Z 2022-12-01T16:18:23Z 2022-12-01T16:18:22Z ea9b3a53cbc4a99af4241e660731d5f395d253d7     0 4e6e59cb999d69a689ffdf6a63650aab616d60fa 3aa75c8d00a4a2d4acf10d80f76b937cadb666b7 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/7304  

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 729.695ms · About: xarray-datasette