v.23.11Improvement
Allow Basic Commands in ALTER for TEMPORARY Tables
Why it matters
This feature enables users to perform essentialALTER operations on temporary tables, which were previously restricted. It improves flexibility and usability when working with temporary tables by allowing schema adjustments without recreating them.How to use it
Simply use standardALTER commands on tables created with the TEMPORARY keyword as you would with permanent tables, for example:ALTER TEMPORARY TABLE table_name ...