https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40292 --- Comment #24 from Jonathan Druart <jonathan.druart@gmail.com> --- (In reply to Paul Derscheid from comment #0)
The solution is to fix the usage of RENAME COLUMN in the current db_revs and to write a coding guideline and a QA test to accompany it.
We already have a QA check it seems: https://gitlab.com/koha-community/qa-test-tools/-/blob/main/QohA/File/Perl.p... 176 push @forbidden_patterns, 177 { 178 pattern => qr{RENAME\s+COLUMN}i, 179 error => "RENAME COLUMN is not supported in MariaDB < 10.5.2 (see bug 40292)" 180 } 181 if $self->path =~ m|installer/data/mysql/atomicupdate/|; Isn't it working correctly? -- You are receiving this mail because: You are watching all bug changes.