4 DROP CAST — remove a cast
8 DROP CAST [ IF EXISTS ] (source_type AS target_type) [ CASCADE | RESTRICT ]
12 DROP CAST removes a previously defined cast.
14 To be able to drop a cast, you must own the source or the target data
15 type. These are the same privileges that are required to create a cast.
20 Do not throw an error if the cast does not exist. A notice is
24 The name of the source data type of the cast.
27 The name of the target data type of the cast.
31 These key words do not have any effect, since there are no
32 dependencies on casts.
36 To drop the cast from type text to type int:
37 DROP CAST (text AS int);
41 The DROP CAST command conforms to the SQL standard.