jiamingqiu-jimmy commented on issue #31395: URL: https://github.com/apache/superset/issues/31395#issuecomment-2546777031
Wanted to expand on michael-s-molina answer https://github.com/apache/superset/issues/31395#issuecomment-2535793154 on an unofficial fix that worked for me which may help determining the official fix. I went into my metadata database (MYSQL) and looked into the `ab_view_menu` table to find the entry that says "SqlLab". There's two it seems, one for "SqlLab" and one for "SQL Lab", make sure to find the one that is labeled "SqlLab". Update that entry to be "SQLLab" which for me was running the following MYSQL query: `Update ab_view_menu set name="SQLLab" where id=35 \g` in my case the id corresponding to "SqlLab" was 35 then do a full restart of the superset application. -- 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]
