pull_requests
2 rows where user = 5384661
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 68119702 | MDExOlB1bGxSZXF1ZXN0NjgxMTk3MDI= | 837 | closed | 0 | Fixed a bug that showed when trying to establish equivalence of two a… | maciekswat 5384661 | …rrays that are numpy.recarrays The following code WILL run with the fix but will crash when running current xarray: ``` Python import numpy as np import xarray as xr p_data = np.array([('John', 180), ('Stacy', 150), ('Dick',200)], dtype=[('name', '|S256'), ('height', int)]) p_data_1 = np.array([('John', 180), ('Stacy', 150), ('Dick',200)], dtype=[('name', '|S256'), ('height', int)]) weights_0 = xr.DataArray([80,56,120], dims=['participant'], coords={'participant':p_data}) weights_1 = xr.DataArray([81,52,115], dims=['participant'], coords={'participant':p_data_1}) print weights_1-weights_0 ``` | 2016-04-27T20:31:50Z | 2016-06-24T18:13:36Z | 2016-06-24T18:13:36Z | 673fea2438419a0616f07127aa0f3b6a26a9d031 | 0 | 693d019073b0a1a084ffa9a272735a534a682157 | 765f17d3b31af1228c6c8def8e108f62a27d7260 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/837 | |||||
| 123582564 | MDExOlB1bGxSZXF1ZXN0MTIzNTgyNTY0 | 1438 | closed | 0 | Fixing GH1434 xr.concat loses coordinate dtype information with recarrays in 0.9 | maciekswat 5384661 | - [x] Closes #1434 - [x] Tests added / passed - [x] Passes ``git diff upstream/master | flake8 --diff`` - [x] Fully documented, including `whats-new.rst` for all changes and `api.rst` for new API | 2017-06-01T20:06:22Z | 2023-01-23T10:25:28Z | 2023-01-23T10:25:28Z | 1adb9c83885acb83f2c46694dc429675a8a7eac1 | 0 | 6040c0756d5403cbf8005116509716822224c872 | d1e4164f3961d7bbb3eb79037e96cae14f7182f8 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/1438 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);