We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25fc033 commit 53a55b0Copy full SHA for 53a55b0
packages/database/src/QueryStatements/SelectStatement.php
@@ -89,13 +89,6 @@ public function compile(DatabaseDialect $dialect): string
89
90
$compiled = $query->implode(PHP_EOL);
91
92
- /* TODO: this should be improved.
93
- * More specifically, \Tempest\Database\Builder\FieldDefinition should be aware of the dialect,
94
- * or the whole ORM should be refactored to use \Tempest\Database\QueryStatements\FieldStatement*/
95
- // if ($dialect === DatabaseDialect::SQLITE) {
96
- // $compiled = $compiled->replace('`', '');
97
- // }
98
-
99
return $compiled;
100
}
101
0 commit comments