Mssql error when accessing administrators

when you visit the settings tab, and click on administrators, you get this error

SQLSTATE[42000]: [Microsoft][ODBC Driver 18 for SQL Server][SQL Server]Cannot find either column "dbo" or the user-defined function or aggregate "dbo.GROUP_CONCAT_D", or the name is ambiguous. (SQL: select top 20 [backend_users].*, (select dbo.GROUP_CONCAT_D(name, ', ') from [backend_user_groups] inner join [backend_users_groups] on [backend_user_groups].[id] = [backend_users_groups].[user_group_id] where [backend_users].[id] = [backend_users_groups].[user_id]) as [groups], (select name from [backend_user_roles] where [backend_users].[role_id] = [backend_user_roles].[id]) as [role] from [backend_users] where [backend_users].[deleted_at] is null order by [login] desc)

seems like another mssql issue, I apologize for creating more work for you, is this something that is fixable?

When using the SQL Server database engine, you will need to install the group concatenation user-defined aggregate.