Hello
I'm running Inception through Docker Compose and just wanted to upgrade (after a backup) from 30.3 (MariaDB 10.7) to 32.1 (MariaDB 10.11).
In the first run, there was an error starting the db-container:
[ERROR] InnoDB: Upgrade after a crash is not supported. The redo log was created with MariaDB 10.7.8. You must start up and shut down MariaDB 10.7 or earlier.
So I restarted 32.1 with MariaDB 10.7 and it worked.
But since I wanted to upgrade to MariaDB 10.11 too, I changed it again in the Docker Compose file. And it started without this error.
Now Inception runs, but I'm constantly getting type errors in mysql.column_stats:
db-1 | 2024-05-01 6:39:41 4 [ERROR] Incorrect definition of table mysql.column_stats: expected column 'hist_type' at position 9 to have type enum('SINGLE_PREC_HB','DOUBLE_PREC_HB','JSON_HB'), found type enum('SINGLE_PREC_HB','DOUBLE_PREC_HB').
db-1 | 2024-05-01 6:39:41 4 [ERROR] Incorrect definition of table mysql.column_stats: expected column 'histogram' at position 10 to have type longblob, found type varbinary(255).
Any way I can fix this? Manually in the db-container through an SQL query? Or a better upgrade practice?
Thanks for any help in advance!
Best, Jonas