home / github

Menu
  • Search all tables
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

4 rows where author_association = "OWNER", issue = 990844088 and user = 9599 sorted by updated_at descending

✖
✖
✖
✖

✎ View and edit SQL

This data as json, CSV (advanced)

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

user 1

  • simonw · 4 ✖

issue 1

  • sqlite-utils memory can't deal with multiple files with the same name · 4 ✖

author_association 1

  • OWNER · 4 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions issue performed_via_github_app
925321439 https://github.com/simonw/sqlite-utils/issues/325#issuecomment-925321439 https://api.github.com/repos/simonw/sqlite-utils/issues/325 IC_kwDOCGYnMM43J0jf simonw 9599 2021-09-22T20:52:56Z 2021-09-22T20:52:56Z OWNER

Updated documentation: https://sqlite-utils.datasette.io/en/latest/cli.html#running-queries-directly-against-csv-or-json

If two files have the same name they will be assigned a numeric suffix:

$ sqlite-utils memory foo/data.csv bar/data.csv "select * from data_2"
{
    "total_count": 1,
    "+1": 1,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
sqlite-utils memory can't deal with multiple files with the same name 990844088  
925303497 https://github.com/simonw/sqlite-utils/issues/325#issuecomment-925303497 https://api.github.com/repos/simonw/sqlite-utils/issues/325 IC_kwDOCGYnMM43JwLJ simonw 9599 2021-09-22T20:25:44Z 2021-09-22T20:25:44Z OWNER

Here's the relevant code: https://github.com/simonw/sqlite-utils/blob/7427a9137f60de961b6331d0922a3f03da0d1890/sqlite_utils/cli.py#L1289-L1292

I can fix this by checking to see if csv_table is already in use and adding a suffix.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
sqlite-utils memory can't deal with multiple files with the same name 990844088  
925301981 https://github.com/simonw/sqlite-utils/issues/325#issuecomment-925301981 https://api.github.com/repos/simonw/sqlite-utils/issues/325 IC_kwDOCGYnMM43Jvzd simonw 9599 2021-09-22T20:23:25Z 2021-09-22T20:23:25Z OWNER

Oddly I can't replicate this on macOS:

(sqlite-utils) sqlite-utils % ls foo/*.csv foo/bug.csv (sqlite-utils) sqlite-utils % ls bar/*.csv bar/bug.csv (sqlite-utils) sqlite-utils % sqlite-utils memory foo/bug.csv bar/bug.csv --schema CREATE TABLE "bug" ( [col1] TEXT, [col2] TEXT ); CREATE VIEW t1 AS select * from [bug]; CREATE VIEW t AS select * from [bug];

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
sqlite-utils memory can't deal with multiple files with the same name 990844088  
925300637 https://github.com/simonw/sqlite-utils/issues/325#issuecomment-925300637 https://api.github.com/repos/simonw/sqlite-utils/issues/325 IC_kwDOCGYnMM43Jved simonw 9599 2021-09-22T20:21:26Z 2021-09-22T20:21:26Z OWNER

The t1 and t2 aliases were meant to handle this case, but the are no good if the tool throws an error.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
sqlite-utils memory can't deal with multiple files with the same name 990844088  

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,
   [issue] INTEGER REFERENCES [issues]([id])
, [performed_via_github_app] TEXT);
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 567.686ms · About: github-to-sqlite
  • Sort ascending
  • Sort descending
  • Facet by this
  • Hide this column
  • Show all columns
  • Show not-blank rows