home / github

Menu
  • GraphQL API
  • Search all tables

pull_requests

Table actions
  • GraphQL API for pull_requests

2 rows where user = 76039838

✎ 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
690764869 MDExOlB1bGxSZXF1ZXN0NjkwNzY0ODY5 5609 closed 0 Kwargs to rasterio open pkopparla 76039838 - [x] Closes #3269 - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` I've added a new `kwargs` argument to the function `xarray.open_rasterio` under `xarray/xarray/backends/rasterio_.py` which is passed on to the `rasterio.open` function as dicussed under issue #3269. I've added a line describing this change in `whats-new.rst` I'm new to open source contributing, tried to follow instructions as much as I could. I am not sure how to write tests for this, would appreciate any help on that. cheers, Pushkar 2021-07-15T14:21:02Z 2021-07-30T07:28:40Z 2021-07-30T07:09:14Z 2021-07-30T07:09:14Z 78cec7c5faf3176fc67ddffb68e85e772d9f276a     0 f0f09610b361e9a66d87201377bbb36ee45880da da99a5664df4f5013c2f6b0e758394bec5e0bc80 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/5609  
715931359 MDExOlB1bGxSZXF1ZXN0NzE1OTMxMzU5 5716 closed 0 Added get_options method pkopparla 76039838 <!-- Feel free to remove check-list items aren't relevant to your change --> - [X] Closes #5698 - [X] Passes `pre-commit run --all-files` - [X] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [X] New functions/methods are listed in `api.rst` Added a `get_options` method under `core/options.py`. At the moment it returns the OPTIONS dictionary as is to keep it very simple, if a formatted print statement with text is desirable I can try to add it. Edit: Some tests are failing, but they are unrelated to my changes. Not sure how to address the errors. 2021-08-19T13:22:03Z 2021-09-05T00:04:22Z 2021-09-04T23:44:26Z 2021-09-04T23:44:25Z 9dbeb6bca5fa03eec3c670cf043c31c535648099     0 1a0e377f2856be96a3279f20889a0c9550d52861 e26aec9500e04f3b926b248988b976dbfcb9c632 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/5716  

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