home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

2 rows where issue = 567058587 and user = 14808389 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_at (date)

user 1

  • keewis · 2 ✖

issue 1

  • Two strange errors in tests TestVariable using .copy() · 2 ✖

author_association 1

  • MEMBER 2
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
588317037 https://github.com/pydata/xarray/issues/3778#issuecomment-588317037 https://api.github.com/repos/pydata/xarray/issues/3778 MDEyOklzc3VlQ29tbWVudDU4ODMxNzAzNw== keewis 14808389 2020-02-19T16:40:51Z 2020-02-19T16:40:51Z MEMBER

equals returning False in the absence of dask is because of https://github.com/pydata/xarray/blob/52ee5dfe73b51b55cc90f2140f2cd54a2e7946a0/xarray/core/duck_array_ops.py#L74-L81 which uses np.isnat if dask is absent and pd.isnull if dask is present. Since dask_array_type is a tuple, hasattrwill always return False.

Wrapping a datetime in a quantity does not really make sense so I'll try to remove those tests.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Two strange errors in tests TestVariable using .copy() 567058587
588279671 https://github.com/pydata/xarray/issues/3778#issuecomment-588279671 https://api.github.com/repos/pydata/xarray/issues/3778 MDEyOklzc3VlQ29tbWVudDU4ODI3OTY3MQ== keewis 14808389 2020-02-19T15:04:50Z 2020-02-19T15:04:50Z MEMBER

since pint became (or will become, once #3594 is closed) a optional dependency, we will definitely have to add it to show_versions.

Note that none of them will fail with dask installed (which is why we didn't catch this with CI): without dask: python d = np.datetime64("NaT", "ns") v = xr.Variable(["x"], ureg.Quantity([d], ureg.m)) assert v.equals(v.copy()) # AssertionError with dask, equals returns True and the tests pass.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Two strange errors in tests TestVariable using .copy() 567058587

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [issue_comments] (
   [html_url] TEXT,
   [issue_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [created_at] TEXT,
   [updated_at] TEXT,
   [author_association] TEXT,
   [body] TEXT,
   [reactions] TEXT,
   [performed_via_github_app] TEXT,
   [issue] INTEGER REFERENCES [issues]([id])
);
CREATE INDEX [idx_issue_comments_issue]
    ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
    ON [issue_comments] ([user]);
Powered by Datasette · Queries took 3049.663ms · About: xarray-datasette