You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to set a permanent filter on a joincolumn, the joined entity uses UUID as primary key.
I encountered 2 problems
First, in APY\DataGridBundle\Grid\Source\Entity, a use APY\DataGridBundle\Grid\Column\JoinColumn; was missing so every if ($variable instanceof JoinColumn) were always false.
Second I now have the following error : An exception occurred while executing a query: SQLSTATE[42883]: Undefined function: 7 ERROR: function lower(uuid) does not exist as if it's trying to lowercase the UUID object coming from my PGSQL DataBase
I was trying to set a permanent filter on a joincolumn, the joined entity uses UUID as primary key.
I encountered 2 problems
First, in APY\DataGridBundle\Grid\Source\Entity, a use APY\DataGridBundle\Grid\Column\JoinColumn; was missing so every if ($variable instanceof JoinColumn) were always false.
Second I now have the following error : An exception occurred while executing a query: SQLSTATE[42883]: Undefined function: 7 ERROR: function lower(uuid) does not exist as if it's trying to lowercase the UUID object coming from my PGSQL DataBase
here is my code
The text was updated successfully, but these errors were encountered: