@@ -203,8 +203,8 @@ |
||
| 203 | 203 | public function dropCommentFromTable(string $table): string |
| 204 | 204 | { |
| 205 | 205 | return 'COMMENT ON TABLE ' |
| 206 | - . $this->queryBuilder->quoter()->quoteTableName($table) |
|
| 207 | - . ' IS NULL'; |
|
| 206 | + . $this->queryBuilder->quoter()->quoteTableName($table) |
|
| 207 | + . ' IS NULL'; |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | public function dropDefaultValue(string $name, string $table): string |
@@ -1136,20 +1136,20 @@ |
||
| 1136 | 1136 | $secondQuery = new Query($db); |
| 1137 | 1137 | |
| 1138 | 1138 | $secondQuery->select('id') |
| 1139 | - ->from('TotalTotalExample t2') |
|
| 1140 | - ->where('w > 5'); |
|
| 1139 | + ->from('TotalTotalExample t2') |
|
| 1140 | + ->where('w > 5'); |
|
| 1141 | 1141 | |
| 1142 | 1142 | $thirdQuery = new Query($db); |
| 1143 | 1143 | |
| 1144 | 1144 | $thirdQuery->select('id') |
| 1145 | - ->from('TotalTotalExample t3') |
|
| 1146 | - ->where('w = 3'); |
|
| 1145 | + ->from('TotalTotalExample t3') |
|
| 1146 | + ->where('w = 3'); |
|
| 1147 | 1147 | |
| 1148 | 1148 | $query->select('id') |
| 1149 | - ->from('TotalExample t1') |
|
| 1150 | - ->where(['and', 'w > 0', 'x < 2']) |
|
| 1151 | - ->union($secondQuery) |
|
| 1152 | - ->union($thirdQuery, true); |
|
| 1149 | + ->from('TotalExample t1') |
|
| 1150 | + ->where(['and', 'w > 0', 'x < 2']) |
|
| 1151 | + ->union($secondQuery) |
|
| 1152 | + ->union($thirdQuery, true); |
|
| 1153 | 1153 | |
| 1154 | 1154 | [$actualQuerySql, $queryParams] = $db->getQueryBuilder()->build($query); |
| 1155 | 1155 | |