PostgreSQL has an alternative way to cast fields/literals/functions to another data type apart from CAST <field/literal/function_call> AS <data_type>, which is the :: operator: `<field/literal/function_call>::<data_type>. It would be nice to implement this as it enhances user experience and can result in more compact queries.