v.25.8Improvement
Fix formatting of CREATE USER with query
Fix formatting of CREATE USER with query parameters (i.e. CREATE USER {username:Identifier} IDENTIFIED WITH no_password). #84376 (Azat Khuzhin).Why it matters
This fix resolves problems users encountered when dynamically specifying usernames inCREATE USER statements with query parameters, ensuring proper parsing and execution of these commands with authentication methods. It improves usability and correctness when managing users programmatically.How to use it
Use theCREATE USER statement with query parameters to dynamically create users. For example:CREATE USER {username:Identifier} IDENTIFIED WITH no_passwordThis command will now correctly process the parameters and create the user without formatting errors.