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).
Add support for query parameters in the UPDATE statement within ALTER queries.

Why it matters

This feature enables using query parameters to dynamically specify values in UPDATE statements, improving flexibility and security by allowing parameterized queries in ALTER updates.

How to use it

When writing an ALTER 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.