home / github

Menu
  • GraphQL API
  • Search all tables

pull_requests

Table actions
  • GraphQL API for pull_requests

1 row where user = 46948104

✎ 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
1736048984 PR_kwDOAMm_X85negFY 8774 closed 0 Fixing issue #8770: Improved frequency parameter logic to set it to 'D' only if periods, start, or end are None. rjavierch 46948104 This Pull Request addresses the issue reported regarding the default setting of the frequency (freq) parameter in Xarray. Currently, the frequency is explicitly set to "D" by default, which may not always be appropriate behavior. The proposed improvement adjusts the logic to set the frequency to "D" only if any of the parameters (periods, start, or end) are None, providing more flexibility and aligning with expected behavior. Changes: Updated logic for setting the frequency parameter to consider periods, start, or end values. Added checks to ensure that the frequency is set to "D" only when necessary. Please review and provide feedback on the proposed changes. Any suggestions for further improvements are welcome. <!-- Feel free to remove check-list items aren't relevant to your change --> - [x] Closes #8770 2024-02-21T05:48:46Z 2024-02-24T12:43:22Z 2024-02-24T12:43:19Z 2024-02-24T12:43:19Z f63ec87476db065a58d423670b8829abc8d1e746     0 9196cd28dd481af1500f9634a8a70dfd2bcb1546 8e1dfcf571e77701d5669fd31f1576aed1007b45 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/8774  

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