Comment on page
MSCEWI1032
Type not supported in cast operation.
Medium
This error happens when a type is not supported in a cast operation.
SELECT CAST(s.addresses AS address_book_t) FROM states s;
SELECT
/*** MSC-ERROR - MSCEWI1032 - TYPE NOT SUPPORTED ***/
CAST_STUB('CAST(s.addresses AS address_book_t)')
FROM PUBLIC.states s;
- The cast is converted to a user-defined function (UDF/Stub), so you can modify it to emulate the behavior of the cast function.