home / github

Menu
  • Search all tables
  • GraphQL API

commits

Table actions
  • GraphQL API for commits

11 rows where "author_date" is on date 2022-08-27 and repo = 140912432 sorted by author_date descending

✖
✖
✖

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_author, raw_committer, committer, author_date (date), committer_date (date)

author 2

  • simonw 10
  • fgregg 1

repo 1

  • sqlite-utils · 11 ✖
sha message author_date ▲ committer_date raw_author raw_committer repo author committer
365f62520fa080bc363ab3820b0c800c5096abff will, not may - refs #468 2022-08-27T23:20:35Z 2022-08-28T03:38:30Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
104f37fa4d2e7e5999c1d829267b62c737f74d3e db[table].create(..., transform=True) and create-table --transform Closes #467 2022-08-27T23:17:55Z 2022-08-27T23:17:55Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
36ffcafb1a0f94c134cdedeb626012bc8e2c1d8a table.default_values property, closes #475 Refs #468 2022-08-27T22:41:10Z 2022-08-27T22:42:58Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
c5f8a2eb1a81a18b52825cc649112f71fe419b12 in extract code, check equality witH IS instead of = for nulls (#455) sqlite "IS" is equivalent to SQL "IS NOT DISTINCT FROM" close #423 2022-08-27T14:45:03Z 2022-08-27T14:45:03Z Forest Gregg 88e22aeee75bfd8a1cdeae56a89d5509d1c1d1c4 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 fgregg 536941 web-flow 19864447
19dd077944429c1365b513d80cc71c605ae3bed3 Support entrypoints for `--load-extension` (#473) * Entrypoint support, closes #470 2022-08-27T05:55:47Z 2022-08-27T05:55:47Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 GitHub cd792325681cbad9f663f2879d8b69f1edbb678f sqlite-utils 140912432 simonw 9599 web-flow 19864447
a46a5e3a9e03dcdd8c84a92e4a5dbfa02ba461fa Improved code compilation pattern, closes #472 2022-08-27T05:20:09Z 2022-08-27T05:20:09Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
23ef1d6c20f6a8ef0db508b9711ae0d8ed6a4156 bulk --functions, closes #471 2022-08-27T05:10:43Z 2022-08-27T05:10:43Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
59e2cfbdc12082bac03e8ac6f99c8c41a4bc72ba sqlite-utils memory --functions, refs #471 2022-08-27T05:03:53Z 2022-08-27T05:03:53Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
85e7411bbd2884e42c65c3e93330f0ddd986be38 Skip test if pragma_function_list not supported, refs #471 2022-08-27T05:01:58Z 2022-08-27T05:01:58Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
31f062d4a7e6457bfbe94b2e45a7b80028f1e95c sqlite-utils query --functions option, refs #471 2022-08-27T04:53:55Z 2022-08-27T04:53:55Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599
7a9a6363ffc1b4f1a9444a22999addabfa756c54 sqlite-utils rows --order option, closes #469 2022-08-27T04:10:20Z 2022-08-27T04:10:20Z Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 Simon Willison 13ae486343ea6454a93114c6f558ffea2f2c6874 sqlite-utils 140912432 simonw 9599 simonw 9599

Advanced export

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

CSV options:

CREATE TABLE [commits] (
   [sha] TEXT PRIMARY KEY,
   [message] TEXT,
   [author_date] TEXT,
   [committer_date] TEXT,
   [raw_author] TEXT REFERENCES [raw_authors]([id]),
   [raw_committer] TEXT REFERENCES [raw_authors]([id]),
   [repo] INTEGER REFERENCES [repos]([id]),
   [author] INTEGER REFERENCES [users]([id]),
   [committer] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_commits_committer]
                ON [commits] ([committer]);
CREATE INDEX [idx_commits_author]
                ON [commits] ([author]);
CREATE INDEX [idx_commits_repo]
                ON [commits] ([repo]);
CREATE INDEX [idx_commits_raw_committer]
                ON [commits] ([raw_committer]);
CREATE INDEX [idx_commits_raw_author]
                ON [commits] ([raw_author]);
Powered by Datasette · Queries took 45.523ms · About: github-to-sqlite
  • Sort ascending
  • Sort descending
  • Facet by this
  • Hide this column
  • Show all columns
  • Show not-blank rows