Changeset View
Changeset View
Standalone View
Standalone View
src/applications/repository/query/PhabricatorRepositoryQuery.php
| Show First 20 Lines • Show All 485 Lines • ▼ Show 20 Lines | protected function getPagingValueMap($cursor, array $keys) { | ||||
| } | } | ||||
| return $map; | return $map; | ||||
| } | } | ||||
| protected function buildSelectClauseParts(AphrontDatabaseConnection $conn) { | protected function buildSelectClauseParts(AphrontDatabaseConnection $conn) { | ||||
| $parts = parent::buildSelectClauseParts($conn); | $parts = parent::buildSelectClauseParts($conn); | ||||
| $parts[] = 'r.*'; | $parts[] = qsprintf($conn, 'r.*'); | ||||
| if ($this->shouldJoinSummaryTable()) { | if ($this->shouldJoinSummaryTable()) { | ||||
| $parts[] = 's.*'; | $parts[] = qsprintf($conn, 's.*'); | ||||
| } | } | ||||
| return $parts; | return $parts; | ||||
| } | } | ||||
| protected function buildJoinClauseParts(AphrontDatabaseConnection $conn) { | protected function buildJoinClauseParts(AphrontDatabaseConnection $conn) { | ||||
| $joins = parent::buildJoinClauseParts($conn); | $joins = parent::buildJoinClauseParts($conn); | ||||
| ▲ Show 20 Lines • Show All 221 Lines • Show Last 20 Lines | |||||