Amazon Redshift will no longer support the creation of new Python UDFs starting November 1, 2025.
If you would like to use Python UDFs, create the UDFs prior to that date.
Existing Python UDFs will continue to function as normal. For more information, see the
blog post
DEALLOCATE
Deallocates a prepared statement.
Syntax
DEALLOCATE [PREPARE] plan_name
Parameters
- PREPARE
-
This keyword is optional and is ignored.
- plan_name
-
The name of the prepared statement to deallocate.
Usage Notes
DEALLOCATE is used to deallocate a previously prepared SQL statement. If you don't explicitly deallocate a prepared statement, it is deallocated when the current session ends. For more information on prepared statements, see PREPARE.