In a view, I'm casting a timestamp without timezone to date.
Looks to me like any of these should work:
Cast("Orders"."OrderDate" as Date),
Date("Orders"."OrderDate"),
"Orders"."OrderDate"::Date,
but they all give the error
cannot change data type of view column "OrderDate" from timestamp without time zone to date
Postgres 11
pgAdmin 4.9