User tests: Successful: Unsuccessful:
When normalising the fields table (moving assigned_cat_ids to own table #__fields_categories) I introduced the use of a "GROUP_CONCAT". However that only works in MySQL and not in PostgreSQL and MSSQL. @alikon created a PR to port the group concat feature to PostgreSQL but it would still need a solution for MSSQL.
When looking why we need it I found that it is only used for the fiels list manager to show the categories:
This PR proposes to remove that information from the list manager (it's obviously still in the form itself) which removes the need for that GROUP_CONCAT. On the other hand it allows to add a filter for those categories
None
Status | New | ⇒ | Pending |
Category | ⇒ | Administration com_fields Language & Strings |
We will have to do separate queries to fetch that. Since it's only used in backend I see no issues with the potential performance impact (they are light queries anyway).
I can add it back hopefuly later today.
Thanks.
Labels |
Added:
?
?
|
Added back the categories using a new helper method.
we still have a GROUP_CONCAT()
in search content plugin
https://github.com/joomla/joomla-cms/pull/13291/files#diff-b32bbae639a4113309650b03c2b09ba1R173
I have tested this item
tested with postgresql
Yep, I know about the content one. Didn't have the time yet to look at it. Have to play with search a bit tomorrow
I have tested this item
Status | Pending | ⇒ | Ready to Commit |
Labels |
RTC, thanks
Milestone |
Added: |
Status | Ready to Commit | ⇒ | Fixed in Code Base |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-12-27 21:44:03 |
Closed_By | ⇒ | rdeutz | |
Labels |
Added:
?
|
It works, but I still would like to have the information about assigned categories in the list view. I use this information quite often on my production sites with DPFields.