https://bugs.kde.org/show_bug.cgi?id=513761
Nate Graham <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas |ma/kactivitymanagerd/-/comm |ma/kactivitymanagerd/-/comm |it/5803c659d6bde18742d75d0c |it/83f6bb76c20b67bed5c86457 |ceb4c539bd60ffba |f7d22c493a777769 --- Comment #11 from Nate Graham <[email protected]> --- Git commit 83f6bb76c20b67bed5c86457f7d22c493a777769 by Nate Graham. Committed on 13/02/2026 at 20:16. Pushed by ngraham into branch 'Plasma/6.6'. Fix SQL syntax error: Replace .tables with valid SQL query The database initialization was using the SQLite shell command ".tables" which is not valid SQL and causes a syntax error when executed through QSqlQuery. This prevented KRunner from searching activities and caused the Activity Bar widget to show incorrect state on startup. Replace ".tables" with the equivalent SQL query: "SELECT name FROM sqlite_master WHERE type='table'" This query achieves the same validation purpose (checking database integrity) but uses standard SQL syntax that works with Qt's SQL API. (cherry picked from commit 5803c659d6bde18742d75d0cceb4c539bd60ffba) 5803c659 Fix SQL syntax error: Replace .tables with valid SQL query Co-authored-by: Simone Checchia <[email protected]> M +1 -1 src/common/database/schema/ResourcesDatabaseSchema.cpp https://invent.kde.org/plasma/kactivitymanagerd/-/commit/83f6bb76c20b67bed5c86457f7d22c493a777769 -- You are receiving this mail because: You are watching all bug changes.
