home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

1 row where user = 11439447

✎ 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
424267793 MDExOlB1bGxSZXF1ZXN0NDI0MjY3Nzkz 4104 closed 0 Fix open_rasterio() for WarpedVRT with specified src_crs dtpc 11439447 Fix bug when passing a `WarpedVRT` object, for which `src_crs` was explicitly specified, to `open_raster()`. `open_rastario()` creates a new `WarpedVRT` object by getting init params from the original `vrt`. This PR adds some of those params (e.g. `src_crs`) which were missing. - [x] Tests added - [x] Passes `isort -rc . && black . && mypy . && flake8` - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API 2020-05-28T06:01:46Z 2020-06-11T00:48:41Z 2020-06-05T19:32:50Z 2020-06-05T19:32:50Z 274bd4b98235557f643eb110e77ee09c3c8689bc     0 5096587e9d299cfdb2af19b69f380e4aa51d08c6 e5cc19cd8f8a69e0743f230f5bf51b7778a0ff96 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/4104  

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