develop #2

Merged
aldarien merged 7 commits from develop into master 2025-09-29 16:44:47 -03:00
37 changed files with 423 additions and 177 deletions
Showing only changes of commit e6759bcf06 - Show all commits

View File

@ -199,7 +199,7 @@ abstract class Select extends Query implements Database\Query\Select
return '*';
}
$columns = (is_array($this->getColumns())) ? implode(', ', $this->getColumns()) : $this->getColumns();
return "({$columns})";
return "{$columns}";
}
protected function getJoinsString(): string
{