v.21.1Improvements
Allow Query Parameters in UPDATE Statement of ALTER Query
Allow query parameters in UPDATE statement of ALTER query. Fixes #10976. #17563 (alexey-milovidov).
Why it matters
This feature enables using query parameters to dynamically specify values inUPDATE statements, improving flexibility and security by allowing parameterized queries in ALTER updates.How to use it
When writing anALTER TABLE ... UPDATE query, you can now use query parameters as placeholders for values. Pass the parameters through the query interface as usual, allowing dynamic updates without hardcoding values.