Skip to content
Snippets Groups Projects
  1. Nov 01, 2022
    • Mario Oenning's avatar
      perf: tweak some queries in mkpkglists · 5669821b
      Mario Oenning authored
      
      We can omit the "distinct" from some queries
      because constraints in the DB ensure uniqueness:
      
      * Groups sub-query
      PackageGroup: Primary key makes "PackageID" + "GroupID" unique
      Groups: Unique index on "Name" column
      -> Technically we can't have a package with the same group-name twice
      
      * Licenses sub-query:
      PackageLicense -> Primary key makes "PackageID" + "LicenseID" unique
      Licenses -> Unique index on "Name" column
      -> Technically we can't have a package with the same license-name twice
      
      * Keywords sub-query:
      PackageKeywords -> Primary key makes "PackageBaseID" + "KeywordID" unique
      (And a Package can only have one PackageBase)
      Keywords -> Unique index on "Name" column
      -> Technically we can't have a package with the same Keyword twice
      
      * Packages main-query:
      We join PackageBases and Users on their primary key columns
      (which are guaranteed to be unique)
      -> There is no way we could end up with more than one record for a Package
      
      Signed-off-by: default avatarmoson-mo <mo-son@mailbox.org>
      Verified
      5669821b
  2. Oct 31, 2022
  3. Oct 28, 2022
  4. Oct 22, 2022
  5. Oct 15, 2022
  6. Oct 11, 2022
  7. Sep 30, 2022
  8. Sep 26, 2022
  9. Sep 25, 2022
  10. Sep 24, 2022
  11. Sep 13, 2022
    • Kevin Morris's avatar
      fix: retry transactions who fail due to deadlocks · ec315201
      Kevin Morris authored
      
      In my opinion, this kind of handling of transactions is pretty ugly.
      The being said, we have issues with running into deadlocks on aur.al,
      so this commit works against that immediate bug.
      
      An ideal solution would be to deal with retrying transactions through
      the `db.begin()` scope, so we wouldn't have to explicitly annotate
      functions as "retry functions," which is what this commit does.
      
      Closes #376
      
      Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
      Verified
      ec315201
  12. Sep 12, 2022
  13. Sep 11, 2022
  14. Sep 10, 2022
Loading