Page MenuHomePhabricator

Fix an issue where querying for a large number of projects by slug could paginate incorrectly
ClosedPublic

Authored by epriestley on Jul 9 2020, 5:47 PM.
Tags
None
Referenced Files
F13101150: D21399.id.diff
Fri, Apr 26, 10:22 PM
Unknown Object (File)
Thu, Apr 25, 2:13 AM
Unknown Object (File)
Sat, Apr 6, 11:11 PM
Unknown Object (File)
Thu, Mar 28, 11:44 PM
Unknown Object (File)
Thu, Mar 28, 8:22 PM
Unknown Object (File)
Jan 20 2024, 4:40 PM
Unknown Object (File)
Jan 16 2024, 4:08 PM
Unknown Object (File)
Jan 16 2024, 12:37 PM
Subscribers
None

Details

Summary

See PHI1809. This query may join the "slug" table, but each project may have multiple slugs, and the query does not "GROUP BY" when this join occurs.

This may lead to partial result sets and unusual paging behavior.

This could likely be caught categorically in loadAllFromArray(); I'll adjust this in a followup.

Test Plan

A minimal reproduction case is something like:

  • Give project P slugs: a, b, c.
  • Give project Q slugs: d.
  • Query for slugs: a, b, c, d; with limit 2.
  • Order the query so P returns first.
  • Expect: P and Q.
  • Actual: P generates 3 raw rows and the final result is just P with no pagination cursor.

Diff Detail

Repository
rP Phabricator
Branch
project1
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 24755
Build 34140: Run Core Tests
Build 34139: arc lint + arc unit