mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 16:52:41 +01:00
Disambiguate "id" column in People query which joins Email
Summary: We end up with both "user.id" and "email.id". Disambiguate for ORDER. Test Plan: Ran Conduit user.query query with "email". Reviewers: wez, chad Reviewed By: chad CC: aran Differential Revision: https://secure.phabricator.com/D6234
This commit is contained in:
parent
f34dcbc73b
commit
a905e8ae5a
1 changed files with 4 additions and 0 deletions
|
@ -242,4 +242,8 @@ final class PhabricatorPeopleQuery
|
|||
return $this->formatWhereClause($where);
|
||||
}
|
||||
|
||||
protected function getPagingColumn() {
|
||||
return 'user.id';
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue