Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
one less space per row in the dump can make a considerable difference in file-size
  • Loading branch information
staabm authored Feb 29, 2024
1 parent e489d11 commit 9795f14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mysqldump.php
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ private function listValues(string $tableName)
$resultSet = $this->conn->query($stmt);
$resultSet->setFetchMode(PDO::FETCH_ASSOC);

$ignore = $this->settings->isEnabled('insert-ignore') ? ' IGNORE' : '';
$ignore = $this->settings->isEnabled('insert-ignore') ? ' IGNORE' : '';
$count = 0;

foreach ($resultSet as $row) {
Expand Down

0 comments on commit 9795f14

Please sign in to comment.