issue_comments
7 rows where issue = 925410305 and user = 9599 sorted by updated_at descending
This data as json, CSV (advanced)
Suggested facets: updated_at (date)
issue 1
- Introspection property for telling if a table is a rowid table · 7 ✖
id | html_url | issue_url | node_id | user | created_at | updated_at ▲ | author_association | body | reactions | issue | performed_via_github_app |
---|---|---|---|---|---|---|---|---|---|---|---|
864418795 | https://github.com/simonw/sqlite-utils/issues/285#issuecomment-864418795 | https://api.github.com/repos/simonw/sqlite-utils/issues/285 | MDEyOklzc3VlQ29tbWVudDg2NDQxODc5NQ== | simonw 9599 | 2021-06-19T15:11:05Z | 2021-06-19T15:11:14Z | OWNER | Actually I'm going to go with |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Introspection property for telling if a table is a rowid table 925410305 | |
864418188 | https://github.com/simonw/sqlite-utils/issues/285#issuecomment-864418188 | https://api.github.com/repos/simonw/sqlite-utils/issues/285 | MDEyOklzc3VlQ29tbWVudDg2NDQxODE4OA== | simonw 9599 | 2021-06-19T15:05:53Z | 2021-06-19T15:05:53Z | OWNER |
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Introspection property for telling if a table is a rowid table 925410305 | |
864417808 | https://github.com/simonw/sqlite-utils/issues/285#issuecomment-864417808 | https://api.github.com/repos/simonw/sqlite-utils/issues/285 | MDEyOklzc3VlQ29tbWVudDg2NDQxNzgwOA== | simonw 9599 | 2021-06-19T15:03:00Z | 2021-06-19T15:03:00Z | OWNER | I think I like |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Introspection property for telling if a table is a rowid table 925410305 | |
864417765 | https://github.com/simonw/sqlite-utils/issues/285#issuecomment-864417765 | https://api.github.com/repos/simonw/sqlite-utils/issues/285 | MDEyOklzc3VlQ29tbWVudDg2NDQxNzc2NQ== | simonw 9599 | 2021-06-19T15:02:42Z | 2021-06-19T15:02:42Z | OWNER | Some options:
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Introspection property for telling if a table is a rowid table 925410305 | |
864417493 | https://github.com/simonw/sqlite-utils/issues/285#issuecomment-864417493 | https://api.github.com/repos/simonw/sqlite-utils/issues/285 | MDEyOklzc3VlQ29tbWVudDg2NDQxNzQ5Mw== | simonw 9599 | 2021-06-19T15:00:43Z | 2021-06-19T15:00:43Z | OWNER | I have to be careful about the language I use here. Here's the official definition: https://www.sqlite.org/rowidtable.html
So it's not correct to call a table a "rowid table" only if it is missing its own primary keys. Maybe |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Introspection property for telling if a table is a rowid table 925410305 | |
864417133 | https://github.com/simonw/sqlite-utils/issues/285#issuecomment-864417133 | https://api.github.com/repos/simonw/sqlite-utils/issues/285 | MDEyOklzc3VlQ29tbWVudDg2NDQxNzEzMw== | simonw 9599 | 2021-06-19T14:57:36Z | 2021-06-19T14:57:36Z | OWNER | So the logic is:
|
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Introspection property for telling if a table is a rowid table 925410305 | |
864417031 | https://github.com/simonw/sqlite-utils/issues/285#issuecomment-864417031 | https://api.github.com/repos/simonw/sqlite-utils/issues/285 | MDEyOklzc3VlQ29tbWVudDg2NDQxNzAzMQ== | simonw 9599 | 2021-06-19T14:56:45Z | 2021-06-19T14:56:45Z | OWNER | ```pycon <Table rowid_table (name)> >>> db["regular_table"].insert({"id": 1, "name": "Cleo"}, pk="id") <Table regular_table (id, name)> >>> db["rowid_table"].pks ['rowid'] >>> db["regular_table"].pks ['id'] ``` But that's because the `.pks` property hides the difference: https://github.com/simonw/sqlite-utils/blob/dc94f4bb8cfe922bb2f9c89f8f0f29092ea63133/sqlite_utils/db.py#L805-L810 |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
Introspection property for telling if a table is a rowid table 925410305 |
Advanced export
JSON shape: default, array, newline-delimited, object
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]);
user 1