I have the same problem, and updating the schema version to 4.3.5 didn't help either.
In my case, the problem seems to be related to the lang directory.
Hi abdulaziz zaid,
Yes, I would like to add support of the Profile β module.
kachinsky β created an issue.
kachinsky β made their first commit to this issueβs fork.
kachinsky β created an issue.
kachinsky β created an issue.
We're also experiencing the same problem as @Amstercad.
When we try to add the translation for a product we get "The SKU "SOME_SKU" is already in use and must be unique."
Hi @webdrips
Your patch doesn't work, the view returns the error after applying:
Error: Class "Drupal\views\Ajax\SetBrowserUrl" not found in Drupal\views\Controller\ViewAjaxController->ajaxView() (line 219 of /code/web/core/modules/views/src/Controller/ViewAjaxController.php)
I faced the similar problem, not in a View, but in my custom query.
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '."mailudn"."field_display_name_valuetotal_nodes_voted_on"."total_nodes_voted_on_' at line 44
In my query I have this GROUP BY:
$query->groupBy('u.uid, u.name, u.mail, udn.field_display_name_value, total_nodes_voted_on.total_nodes_voted_on_sum, total_nodes_voted_on.avg_total_nodes_voted_on_sum, user.user_display_name_check, user_name.name_check, user_mail.mail_check');
which becomes
GROUP BY "u"."uidu"."nameu"."mailudn"."field_display_name_valuetotal_nodes_voted_on"."total_nodes_voted_on_sumtotal_nodes_voted_on"."avg_total_nodes_voted_on_sumuser"."user_display_name_checkuser_name"."name_checkuser_mail"."mail_check")
If I change my query to
$query->groupBy('u.uid')
->groupBy('u.name')
->groupBy('u.mail')
->groupBy('udn.field_display_name_value')
->groupBy('total_nodes_voted_on.total_nodes_voted_on_sum')
->groupBy('total_nodes_voted_on.avg_total_nodes_voted_on_sum')
->groupBy('user.user_display_name_check')
->groupBy('user_name.name_check')
->groupBy('user_mail.mail_check');
everything becomes fine.
I've re-rolled the patch for the latest version.