Skip to content

Commit

Permalink
Normalize columns and values refactoring (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdef committed Jan 3, 2023
1 parent 38a5dda commit 6c1b7a3
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/DMLQueryBuilder.php
Expand Up @@ -72,14 +72,6 @@ public function upsert(
bool|array $updateColumns,
array &$params
): string {
if (!$insertColumns instanceof QueryInterface) {
$insertColumns = $this->normalizeColumnNames($table, $insertColumns);
}

if (!is_bool($updateColumns)) {
$updateColumns = $this->normalizeColumnNames($table, $updateColumns);
}

/** @var Constraint[] $constraints */
$constraints = [];

Expand Down

0 comments on commit 6c1b7a3

Please sign in to comment.