I'm running akonadi on a Postgres 15 database. I now get a bunch of messages: Mär 10 12:35:20 X1E kalendarac[2562]: WARNUNG: Version von Sortierfolge für Datenbank »akonadi« stimmt nicht überein Mär 10 12:35:20 X1E kalendarac[2562]: DETAIL: Die Datenbank wurde mit Sortierfolgenversion 2.36 erzeugt, aber das Betriebssystem hat Version 2.37. Mär 10 12:35:20 X1E kalendarac[2562]: TIP: Bauen Sie alle Objekte in dieser Datenbank, die die Standardsortierfolge verwenden, neu und führen Sie ALTER DATABASE akonadi REFRESH COLLATION VERSION aus, oder bauen Sie PostgreSQL mit der richtigen Bibliotheksversion. I guess the issue is that Tumbleweed recently switched to glibc 2.37. Any idea how to fix this? Operating System: openSUSE Tumbleweed 20230306 KDE Plasma Version: 5.27.2 KDE Frameworks Version: 5.103.0 Qt Version: 5.15.8 Kernel Version: 6.2.1-1-default (64-bit)
Hi Axel, can confirm this issue for akonadi with postgres here! This fixed it for me: $ export $(grep Host $HOME/.config/akonadi/akonadiserverrc) $ psql -h $Host akonadi akonadi=# ALTER DATABASE akonadi REFRESH COLLATION VERSION; HINWEIS: Version wird von 2.36 in 2.37 geändert ALTER DATABASE akonadi=# \q
See https://userbase.kde.org/Akonadi/Postgres_update for how to do a postgres update
(In reply to Carl Schwan from comment #2) > See https://userbase.kde.org/Akonadi/Postgres_update for how to do a > postgres update That is clearly not the solution, but #comment1 fixed it