DROP TYPE¶
Synopsis¶
| 1 |  | 
Description¶
Removes a type alias from ksqlDB. This statement doesn't fail if the type is in use in active queries or user-defined functions, because the DROP TYPE statement doesn't track whether queries are using the type. This means that you can drop a type any time, and old queries continue to work. Also, old queries running with a dropped type and don't change if you register a new type with the same name.
If the IF EXISTS clause is present, the statement doesn't fail if the type doesn't exist.
Example¶
| 1 |  | 
  
    
      Last update:
      2022-08-08