Skip to content

Commit c0580d6

Browse files
ENGCOM-907: Fix for the ConcatExpression seperator #14100
- Merge Pull Request #14100 from stephan-cream/magento2:2.3-develop-fix-concat-expression - Merged commits: 1. 9d48032 2. c13ae1a
2 parents cec4bf4 + c13ae1a commit c0580d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/DB/Sql/ConcatExpression.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function __toString()
6565
}
6666
return sprintf(
6767
'TRIM(%s)',
68-
$this->adapter->getConcatSql($columns, ' ')
68+
$this->adapter->getConcatSql($columns, $this->separator)
6969
);
7070
}
7171
}

0 commit comments

Comments
 (0)