dosubot[bot] commented on issue #30642: URL: https://github.com/apache/superset/issues/30642#issuecomment-2419452700
<!-- Greeting --> Hey @christiaan! I'm here to help you with any issues or questions you have about Superset. I can assist with bug fixes, answer your questions, and guide you on becoming a contributor. Let's tackle this together! <!-- Answer --> The `embedded_dashboards` table in Superset already has a primary key defined on the `uuid` column <sup>[[1]](https://github.com/apache/superset/blob/master/superset/models/embedded_dashboard.py)</sup>. The error you're encountering with Percona XtraDB Cluster is likely due to the cluster's strict mode settings, which require an explicit primary key for all tables. Since the `uuid` column serves as the primary key, the issue might be related to how the primary key is defined or recognized in your setup. To resolve this, ensure that the `uuid` column is correctly set as the primary key in your database schema. If the issue persists, you might need to adjust the Percona XtraDB Cluster's strict mode settings or consult the Percona documentation for handling tables with existing primary keys. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
