Remove explicit cast from index condition
Remove an explicit cast from an index condition which casts the compared value to `timestamp with time zone`. Some installations could have the `created_at` column as a `timestamp without time zone`, which causes index creation to fail. By removing the explicit cast, postgres casts the timestamp expression to the appropriate timestamp type.
Showing
Please register or sign in to comment