The problem I’m having
We have a column name called “*abc” in Redsift database.
When we try to execute dbt run --select, we get following error.
operator does not exist: character varying * double precision
The model we execute contains like following.
SELECT t0.*abc
FROM test as t0
In Redshift, we can execute aboe query, but, dbt dose not allow us to execute.
Do you have any suggestion for this?
Regards,