public function select(array $projections = array(), $append = true) { return parent::select($projections, $append); }
public function testSelect() { $query = new Query(); $this->assertHttpStatus(200, $this->doQuery($query->from(array('address')))); $this->assertHttpStatus(200, $this->doQuery($query->select(array('@version', 'street')))); }