Sets this query to be DISTINCT.
$distinct: TRUE to flag this query DISTINCT, FALSE to disable it.
SelectQueryInterface The called object.
Overrides SelectInterface::distinct
public function distinct($distinct = TRUE) {
$this->distinct = $distinct;
return $this;
}