Skip to content

Commit cefa802

Browse files
committed
Fix after #631
1 parent ebb943e commit cefa802

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/IntoKeyword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public function build(): string
144144
if ($this->dest instanceof Expression) {
145145
$columns = $this->columns === null || $this->columns === []
146146
? ''
147-
: '(' . implode(', ', Context::escape($this->columns)) . ')';
147+
: '(' . implode(', ', Context::escapeAll($this->columns)) . ')';
148148

149149
return $this->dest . $columns;
150150
}

0 commit comments

Comments
 (0)