1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02: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:
epriestley 2013-06-19 11:18:40 -07:00
parent f34dcbc73b
commit a905e8ae5a

View file

@ -242,4 +242,8 @@ final class PhabricatorPeopleQuery
return $this->formatWhereClause($where);
}
protected function getPagingColumn() {
return 'user.id';
}
}