Hi guys. My AWS lamba is using retool postgresql as a database. A query from it produces an error:
Error occurred during query execution:
ConnectorError(ConnectorError { user_facing_error: None, kind: QueryError(PostgresError { code: "XX000", message: "cache lookup failed for type 34472072", severity: "ERROR", detail: None, column: None, hint: None }), transient: false })
From what i understand. A column is still using a non-existing enum. I've checked my tables but i cannot find any columns that are using this non-existing enums. So my question is:
- Is the query is cached?
- If so, is restarting the postgresql will solve the problem?
- If so, how do i do it?