v.23.11Improvement
Function concat now accepts a single argument for consistency with MySQL
Functionconcatcan now be called with a single argument, e.g.,SELECT concat('abc'). This makes its behavior more consistent with MySQL's concat implementation. #57000 (Serge Klochkov).
Why it matters
This feature resolves inconsistencies in string concatenation by enabling theconcat function to accept a single argument. It improves compatibility for users migrating from MySQL or writing cross-database queries by ensuring similar function behavior.How to use it
Simply call theconcat function with one argument as follows:SELECT concat('abc')No additional configuration or settings are required.