home / github / issue_comments

Menu
  • GraphQL API

issue_comments: 850764594

This data as json

html_url issue_url id node_id user created_at updated_at author_association body reactions issue performed_via_github_app
https://github.com/simonw/sqlite-utils/issues/260#issuecomment-850764594 https://api.github.com/repos/simonw/sqlite-utils/issues/260 850764594 MDEyOklzc3VlQ29tbWVudDg1MDc2NDU5NA== 9599 2021-05-29T04:00:54Z 2021-05-29T04:00:54Z OWNER A few options: ```python db["dogs"].create_index([("age", "desc"), "name"]) db["dogs"].create_index([desc("age"), "name"]) db["dogs"].create_index([db.desc("age"), "name"]) ``` The first option uses an optional tuple. The second two use a `desc()` function - the question is where should that live? `sqlite_utils.desc(column)` or `db.desc(column)` are both options. I don't like using the term `desc()` for "descending index" though - it feels like it should mean something more broad. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} 906330187  
Powered by Datasette · Queries took 0.956ms