The syscasts system catalog table describes the casts in the database. It contains one row for each built-in cast, each implicit cast, and each explicit cast that a user defines. The syscasts table has the following columns.
If routine_name and routine_owner have NULL values, this indicates that the cast is defined without a routine. This can occur if both of the data types specified in the argument_type and result_type columns have the same length and alignment, and are passed by reference, or passed by value.
A composite index on columns argument_type, argument_xid, result_type, and result_xid allows only unique values. A composite index on columns result_type and result_xid allows duplicate values.
Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]