pull_requests
1 row where user = 6404167
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 191975593 | MDExOlB1bGxSZXF1ZXN0MTkxOTc1NTkz | 2207 | closed | 0 | Fixes #2198: Drop chunksizes when only when original_shape is different, not when it isn't found | Karel-van-de-Plassche 6404167 | Before this fix chunksizes was dropped even when original_shape was not found in encoding - [x] Closes #2198 - [x] Tests added (for all bug fixes or enhancements) - [x] Tests passed (for all non-documentation changes) Four seemingly unrelated tests failed ``` python ___________________________________________________________________________________ TestEncodeCFVariable.test_missing_fillvalue ____________________________________________________________________________________ self = <xarray.tests.test_conventions.TestEncodeCFVariable testMethod=test_missing_fillvalue> def test_missing_fillvalue(self): v = Variable(['x'], np.array([np.nan, 1, 2, 3])) v.encoding = {'dtype': 'int16'} with pytest.warns(Warning, match='floating point data as an integer'): > conventions.encode_cf_variable(v) E Failed: DID NOT WARN. No warnings of type (<class 'Warning'>,) was emitted. The list of emitted warnings is: [SerializationWarning('saving variable None with floating point data as an integer dtype without any _FillValue to use for NaNs',)]. xarray/tests/test_conventions.py:89: Failed ----------------------------------------------------------------------------------------------- Captured stderr call ----------------------------------------------------------------------------------------------- /usr/lib/python3.6/site-packages/_pytest/vendored_packages/pluggy.py:248: SerializationWarning: saving variable None with floating point data as an integer dtype without any _FillValue to use for NaNs call_outcome = _CallOutcome(func) ____________________________________________________________________________________________ TestAccessor.test_register ____________________________________________________________________________________________ self = <xarray.tests.test_extensions.TestAccessor testMethod=test_register> def test_register(self): @xr.register_dataset_accessor('demo') @xr.register_dataarray_accessor('demo') … | 2018-06-01T09:08:11Z | 2019-06-06T20:35:50Z | 2019-06-06T20:35:50Z | 2019-06-06T20:35:50Z | 44011c9857b249b65b5f403d2791e198e3d67a87 | 0 | 328132bfaf2d42d1d87bea0d77444c631babb83a | 5343ccc4bef77020a8181c9da0fdee6bcae35b5f | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/2207 |
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]);