It appears to be an issue in macro [`redshift__select_from_information_schema_columns` ](https://github.com/data-mie/dbt-profiler/blob/c1c7850a22a00966197996fc0baed40d50cb27c1/macros/cross_db_utils.sql#L99-L112) in getting columns/data types from views. Update to use `pg_get_cols`, e.g.: ``` select * from pg_get_cols('stg_final_view') cols(view_schema name, view_name name, col_name name, col_type varchar, col_num int); ```