I am trying to create a new generated column call memberstat which is a boolean that will hold just a 'True' or 'false' if the current date is greater than expiration date.
So far, whenever i create 'memberstat boolean generated always as (case when expiredate < current_date then '0' else '1' end) stored' this generates an ERROR: generation expression is not immutable.
Is there a way around this? sorry I am not that familiar with postgresql
As you have seen the function
CURRENT_DATE
cannot be used is a virtual column definition because it will change without the values in the row changing. A virtual column must be based only on the data in the same row.The solution is to create a view using either your case statement or a simple comparison operator.
which will return
t
orf
.