#1104533 debian-start: ERROR 1267 (HY000): Illegal mix of collations

Package:
mariadb-server
Source:
mariadb-server
Description:
MariaDB database server binaries
Submitter:
Samuli Suonpää
Date:
2025-08-29 06:05:02 UTC
Severity:
normal
Tags:
#1104533#5
Date:
2025-05-01 15:59:22 UTC
From:
To:
After upgrading from bookworm to trixie, starting mariadb produces this
error message in journal:

May 01 18:17:39 back debian-start[148992]: --------------
May 01 18:17:39 back debian-start[148992]: SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('', 'mysql_native_password', 'mysql_old_password')
May 01 18:17:39 back debian-start[148992]: --------------
May 01 18:17:39 back debian-start[148992]: ERROR 1267 (HY000) at line 1: Illegal mix of collations (utf8mb4_general_ci,COERCIBLE) and (utf8mb4_uca1400_ai_ci,COERCIBLE) for operation '='

mariadb-server dows start and appears to run fine.

I can also reproduce the error manually with the following query:

MariaDB [(none)]> SELECT * FROM mysql.user where password_expired='N';
ERROR 1267 (HY000): Illegal mix of collations (utf8mb4_general_ci,COERCIBLE) and (utf8mb4_uca1400_ai_ci,COERCIBLE) for operation '='

Please let me know if I can provide any more information.

Samuli

#1104533#10
Date:
2025-05-11 21:11:44 UTC
From:
To:
Control: tags -1 moreinfo

What are the steps to reproduce this?

Both before and after the upgrade when I run these SQL commands I get
the exact same results. I am not able to reproduce the illegal mix of
collations you have.

MariaDB [(none)]> SELECT count(*) FROM mysql.user WHERE user='root'
and password='' and password_expired='N' and plugin in ('',
'mysql_native_password', 'mysql_old_password');
+----------+
| count(*) |
+----------+
|        0 |
+----------+
1 row in set (0.004 sec)

MariaDB [(none)]> SHOW WARNINGS;
Empty set (0.000 sec)

MariaDB [(none)]> SELECT Host,User FROM mysql.user where password_expired='N';
+-----------+-------+
| Host      | User  |
+-----------+-------+
| localhost | root  |
| localhost | mysql |
+-----------+-------+

MariaDB [(none)]> SHOW WARNINGS;
Empty set (0.001 sec)


I followed the exact steps we also have in CI at
https://salsa.debian.org/otto/mariadb-server/-/jobs/7566186 to start a
Bookworm container, install MariaDB, enable Sid and upgrade with
apt-get full-upgrade -qq --yes.

The CI includes running command 'mariadb --table -e "SELECT
host,user,plugin,authentication_string FROM user;" mysql', in addition
to starting with service file, which both should trigger the warning,
but I don't see any warnings in Bookworm CI job, nor in Buster or
Bullseye upgrades either
(https://salsa.debian.org/otto/mariadb-server/-/jobs/7566190,
https://salsa.debian.org/otto/mariadb-server/-/jobs/7566189).

#1104533#17
Date:
2025-05-12 20:25:12 UTC
From:
To:
I did some testing with kvm virtual machines and I believe I now have a way to reproduce this.

1. I set up a clean Debian bookworm (12.10.0) on a vm.
2. apt-get install mariadb-server mariadb
3. apt-get full-upgrade (to trixie)

This triggers the problem. However, If I first upgrade the clean bookworm to trixie and only then install mariadb, no problems whatsoever.

With bookworm:

MariaDB [mysql]> SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('', 'mysql_native_password', 'mysql_old_password');
+----------+
| count(*) |
+----------+
|        0 |
+----------+
1 row in set (0.002 sec)

MariaDB [mysql]> SHOW VARIABLES LIKE '%collation%';
+----------------------+--------------------+
| Variable_name        | Value              |
+----------------------+--------------------+
| collation_connection | utf8mb3_general_ci |
| collation_database   | utf8mb4_general_ci |
| collation_server     | utf8mb4_general_ci |
+----------------------+--------------------+
3 rows in set (0.002 sec)

MariaDB [mysql]>


After upgrading to trixie:

MariaDB [mysql]> SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('', 'mysql_native_password', 'mysql_old_password');
ERROR 1267 (HY000): Illegal mix of collations (utf8mb4_general_ci,COERCIBLE) and (utf8mb4_uca1400_ai_ci,COERCIBLE) for operation '='
MariaDB [mysql]> SHOW VARIABLES LIKE '%collation%';
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
| Variable_name            | Value                                                                                                                                   |
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
| character_set_collations | utf8mb3=utf8mb3_uca1400_ai_ci,ucs2=ucs2_uca1400_ai_ci,utf8mb4=utf8mb4_uca1400_ai_ci,utf16=utf16_uca1400_ai_ci,utf32=utf32_uca1400_ai_ci |
| collation_connection     | utf8mb4_uca1400_ai_ci                                                                                                                   |
| collation_database       | utf8mb4_general_ci                                                                                                                      |
| collation_server         | utf8mb4_uca1400_ai_ci                                                                                                                   |
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
4 rows in set (0.003 sec)

MariaDB [mysql]>


Trixie, with mariadb first installed only after upgrading to trixie:

MariaDB [mysql]> SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('', 'mysql_native_password', 'mysql_old_password');
+----------+
| count(*) |
+----------+
|        0 |
+----------+
1 row in set (0.002 sec)

MariaDB [mysql]> SHOW VARIABLES LIKE '%collation%';
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
| Variable_name            | Value                                                                                                                                   |
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
| character_set_collations | utf8mb3=utf8mb3_uca1400_ai_ci,ucs2=ucs2_uca1400_ai_ci,utf8mb4=utf8mb4_uca1400_ai_ci,utf16=utf16_uca1400_ai_ci,utf32=utf32_uca1400_ai_ci |
| collation_connection     | utf8mb4_uca1400_ai_ci                                                                                                                   |
| collation_database       | utf8mb4_uca1400_ai_ci                                                                                                                   |
| collation_server         | utf8mb4_uca1400_ai_ci                                                                                                                   |
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
4 rows in set (0.002 sec)

MariaDB [mysql]>


I believe collation should be “utf8mb4_uca1400_ai_ci” in trixie (MariaDB 11.8.1), when in bookworm (MariaDB 10.11.11) it it “utf8mb4_general_ci”.

Here we can see that if MariaDB 10.11.1 (bookworm) is upgraded to MariaDB 11.8.1 (trixie), collation_connection and collation_server will be “utf8mb4_uca1400_ai_ci”, but collation_database remain utf8mb4_general_ci.

Is this where the problem might be?

Unfortunately I really do not understand how this collation thing works. Anyway, please advice if I should provide more information.

Regards,
Samuli

#1104533#22
Date:
2025-05-13 01:15:02 UTC
From:
To:
Thanks!

Interestingly, I get slightly different results:

$ podman run --interactive --network host --tty --rm --shm-size=1G -e
DISPLAY=$DISPLAY --volume=$PWD:/tmp/run --workdir=/tmp/run
debian:bookworm bash

# apt-get update && apt-get install -y mariadb-server
# service mariadb start
# dpkg -l mariadb-server --no-pager
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name           Version              Architecture Description
+++-==============-====================-============-=================================
ii  mariadb-server 1:10.11.11-0+deb12u1 amd64        MariaDB database
server binaries

# mariadb -e "SHOW VARIABLES LIKE '%collation%';"
+----------------------+--------------------+
| Variable_name        | Value              |
+----------------------+--------------------+
| collation_connection | latin1_swedish_ci  |
| collation_database   | utf8mb4_general_ci |
| collation_server     | utf8mb4_general_ci |
+----------------------+--------------------+

# echo 'deb http://deb.debian.org/debian sid main' > /etc/apt/sources.list
# apt-get full-upgrade -y
# mariadb -e "SELECT count(*) FROM mysql.user WHERE user='root' and
password='' and password_expired='N' and plugin in ('',
'mysql_native_password', 'mysql_old_password');"
+----------+
| count(*) |
+----------+
|        0 |
+----------+

# mariadb -e "SHOW VARIABLES LIKE '%collation%';"
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
| Variable_name            | Value

                       |
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
| character_set_collations |
utf8mb3=utf8mb3_uca1400_ai_ci,ucs2=ucs2_uca1400_ai_ci,utf8mb4=utf8mb4_uca1400_ai_ci,utf16=utf16_uca1400_ai_ci,utf32=utf32_uca1400_ai_ci
|
| collation_connection     | latin1_swedish_ci

                       |
| collation_database       | utf8mb4_uca1400_ai_ci

                       |
| collation_server         | utf8mb4_uca1400_ai_ci

                       |
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+

#1104533#27
Date:
2025-05-15 22:09:50 UTC
From:
To:
...

Two test runs.

1. Clean bookworm, default locale C.UTF-8.
# locale
LANG=C.UTF-8
LANGUAGE=
LC_CTYPE="C.UTF-8"
LC_NUMERIC="C.UTF-8"
LC_TIME="C.UTF-8"
LC_COLLATE="C.UTF-8"
LC_MONETARY="C.UTF-8"
LC_MESSAGES="C.UTF-8"
LC_PAPER="C.UTF-8"
LC_NAME="C.UTF-8"
LC_ADDRESS="C.UTF-8"
LC_TELEPHONE="C.UTF-8"
LC_MEASUREMENT="C.UTF-8"
LC_IDENTIFICATION="C.UTF-8"
LC_ALL=
# apt install mariadb-server
…
# mariadb -e "SHOW VARIABLES LIKE '%collation%';"
+----------------------+--------------------+
| Variable_name        | Value              |
+----------------------+--------------------+
| collation_connection | utf8mb3_general_ci |
| collation_database   | utf8mb4_general_ci |
| collation_server     | utf8mb4_general_ci |
+----------------------+——————————+
# mariadb -e "SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('','mysql_native_password', 'mysql_old_password');"
+----------+
| count(*) |
+----------+
|        0 |
+----------+
# echo deb http://deb.debian.org/debian/ trixie main contrib non-free non-free-firmware > /etc/apt/sources.list
# apt update
…
# apt full-upgrade
…
# mariadb -e "SHOW VARIABLES LIKE '%collation%';"
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
| Variable_name            | Value                                                                                                                                   |
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
| character_set_collations | utf8mb3=utf8mb3_uca1400_ai_ci,ucs2=ucs2_uca1400_ai_ci,utf8mb4=utf8mb4_uca1400_ai_ci,utf16=utf16_uca1400_ai_ci,utf32=utf32_uca1400_ai_ci |
| collation_connection     | utf8mb4_uca1400_ai_ci                                                                                                                   |
| collation_database       | utf8mb4_uca1400_ai_ci                                                                                                                   |
| collation_server         | utf8mb4_uca1400_ai_ci                                                                                                                   |
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
# mariadb -e "SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('','mysql_native_password', 'mysql_old_password’);”
--------------
SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('','mysql_native_password', 'mysql_old_password')
--------------

ERROR 1267 (HY000) at line 1: Illegal mix of collations (utf8mb4_general_ci,COERCIBLE) and (utf8mb4_uca1400_ai_ci,COERCIBLE) for operation '='

2. Clean bookworm, default locale NONE
# locale
LANG=
LANGUAGE=en_US:en
LC_CTYPE="POSIX"
LC_NUMERIC="POSIX"
LC_TIME="POSIX"
LC_COLLATE="POSIX"
LC_MONETARY="POSIX"
LC_MESSAGES="POSIX"
LC_PAPER="POSIX"
LC_NAME="POSIX"
LC_ADDRESS="POSIX"
LC_TELEPHONE="POSIX"
LC_MEASUREMENT="POSIX"
LC_IDENTIFICATION="POSIX"
LC_ALL=
# apt install mariadb-server
…
# mariadb -e "SHOW VARIABLES LIKE '%collation%';"
+----------------------+--------------------+
| Variable_name        | Value              |
+----------------------+--------------------+
| collation_connection | latin1_swedish_ci  |
| collation_database   | utf8mb4_general_ci |
| collation_server     | utf8mb4_general_ci |
+----------------------+——————————+
# mariadb -e "SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('','mysql_native_password', 'mysql_old_password');"
+----------+
| count(*) |
+----------+
|        0 |
+----------+
# echo deb http://deb.debian.org/debian/ trixie main contrib non-free non-free-firmware > /etc/apt/sources.list
# apt update
…
# apt full-upgrade
…
# mariadb -e "SHOW VARIABLES LIKE '%collation%’;"
# mariadb -e "SHOW VARIABLES LIKE '%collation%';"
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
| Variable_name            | Value                                                                                                                                   |
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
| character_set_collations | utf8mb3=utf8mb3_uca1400_ai_ci,ucs2=ucs2_uca1400_ai_ci,utf8mb4=utf8mb4_uca1400_ai_ci,utf16=utf16_uca1400_ai_ci,utf32=utf32_uca1400_ai_ci |
| collation_connection     | latin1_swedish_ci                                                                                                                       |
| collation_database       | utf8mb4_uca1400_ai_ci                                                                                                                   |
| collation_server         | utf8mb4_uca1400_ai_ci                                                                                                                   |
+--------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
# mariadb -e "SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('','mysql_native_password', 'mysql_old_password');”
# mariadb -e "SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('','mysql_native_password', 'mysql_old_password');"
+----------+
| count(*) |
+----------+
|        0 |
+----------+

My guess is, this problem has something to do with the difference between utf8mb3 and utf8mb4 (i.e. 3-byte UTF8 and 4-byte UTF8). I guess utf8mb3 collation is incompatible with utf8mb4.

Until MariaDB 11.5, the default character set was latin1, except in Debian, where it was utf8mb3. Thus, in bookworm, MariaDB defaults to utf8mb3.

From 11.6 on, the default character set has been utf8mb4, both in vanilla MariaDB and Debian MariaDB. So trixie defaults to utf8mb4.

Also, please note this (using the vm in example 1, Clean bookworm, default locale C.UTF-8):

# LC_CTYPE=C mariadb -e "SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('','mysql_native_password', 'mysql_old_password');"
+----------+
| count(*) |
+----------+
|        0 |
+----------+
root@playground:~# LC_CTYPE=C.UTF-8 mariadb -e "SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('','mysql_native_password', 'mysql_old_password');"
--------------
SELECT count(*) FROM mysql.user WHERE user='root' and password='' and password_expired='N' and plugin in ('','mysql_native_password', 'mysql_old_password')
--------------

ERROR 1267 (HY000) at line 1: Illegal mix of collations (utf8mb4_general_ci,COERCIBLE) and (utf8mb4_uca1400_ai_ci,COERCIBLE) for operation '='

#1104533#32
Date:
2025-06-07 07:12:39 UTC
From:
To:
I saw this also upstream at https://jira.mariadb.org/browse/MDEV-36815
and in StackExchange at
https://dba.stackexchange.com/questions/345906/upgrading-from-mariadb-10-11-8-to-11-4-5-gives-warning-about-error-1267-illegal

Presumably a lot of people are running into this. I don't know what is
the fix and I don't fully understand why system tables are affected by
what charset the client is using.

#1104533#41
Date:
2025-08-13 01:09:09 UTC
From:
To:
We believe that the bug you reported is fixed in the latest version of
mariadb, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1104533@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Otto Kekäläinen <otto@debian.org> (supplier of updated mariadb package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Fri, 08 Aug 2025 10:42:35 -0700
Source: mariadb
Architecture: source
Version: 1:11.8.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian MySQL Maintainers <pkg-mysql-maint@lists.alioth.debian.org>
Changed-By: Otto Kekäläinen <otto@debian.org>
Closes: 1104533 1106889
Changes:
 mariadb (1:11.8.3-1) unstable; urgency=medium
 .
   [ Otto Kekäläinen ]
   * New upstream maintenance release 11.8.3. For details about fixes please see
https://mariadb.com/kb/en/mariadb-11-8-3-release-notes/
   * Drop Hurd patches that are now included upstream
   * Update configuration traces to include new upstream system variables:
     - analyze-max-length (default: 4294967295)
     - innodb-linux-aio (default: auto)
   * Suppress new native AIO warning introduced in upstream a87bb96 to avoid
     mariadb-test-run failing on on something that isn't a real issue
   * New upstream release includes fix for MDEV-36815 that yielded "ERROR 1267
     (HY000): Illegal mix of collations" on some systems when restarting the
     MariaDB service in Debian (Closes: #1104533)
   * Remove obsolete cleanup as upstream moved pam_mariadb_mtr.so in c05b1fe
   * Salsa CI: Use full MariaDB package set in Bookworm MariaDB 10.6 upgrade
   * Salsa CI: Automatically use archive.d.o for discontinued releases
 .
   [ Lena Voytek ]
   * Do not hardcode libxml2 dependency in mariadb-plugin-connect
     (Closes: #1106889)
Checksums-Sha1:
 f0da678fa3a30b598f874c5233411a6bdde2646c 5621 mariadb_11.8.3-1.dsc
 264b1d3853d7ce82b822e577f307e414ec699168 119640174 mariadb_11.8.3.orig.tar.gz
 f4e5be6e8e481566dc763eac7c68614d52e58e18 833 mariadb_11.8.3.orig.tar.gz.asc
 d7e9ab0c4f1ece53e260c5b0948bc74539dbc98e 288480 mariadb_11.8.3-1.debian.tar.xz
 4cff1d26c12b61455125b91d79bc334d18265dc9 13333 mariadb_11.8.3-1_source.buildinfo
Checksums-Sha256:
 f69994212d76d53f905f68314b2aa66b91e530c06a242124f93b73cbf2c2578e 5621 mariadb_11.8.3-1.dsc
 1014a85c768de8f9e9c6d4bf0b42617f3b1588be1ad371f71674ea32b87119c0 119640174 mariadb_11.8.3.orig.tar.gz
 829244b8592ab5938379889c1a43c4f7b20fcb9f97855d22d70df717a2660178 833 mariadb_11.8.3.orig.tar.gz.asc
 e3baa3b9f787404b92cacc4f3e2b4ca2478360ee3f2b42965bef35a13d890a05 288480 mariadb_11.8.3-1.debian.tar.xz
 0bc0a48fbd830691425759fc03eece60472b0e2c6db20a4ac4228618909387de 13333 mariadb_11.8.3-1_source.buildinfo
Files:
 8a0145bfa318fd6a6874a2ead7bff549 5621 database optional mariadb_11.8.3-1.dsc
 3c81bc728598f5b53067220c7b729747 119640174 database optional mariadb_11.8.3.orig.tar.gz
 34bd2a8a697c0ede2151f402b28d3ff1 833 database optional mariadb_11.8.3.orig.tar.gz.asc
 c19f09d09e40575d11e38f3d574b5426 288480 database optional mariadb_11.8.3-1.debian.tar.xz
 b022ff0bcdad5fda785055eec3d9cbff 13333 database optional mariadb_11.8.3-1_source.buildinfo
-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEmbRSsR88dMO0U+RvvthEn87o2ogFAmibvuUACgkQvthEn87o
2og+ag/+JCsy5xqvzmRU4BlZB+dZr9KvqUpvzaYPknCw25kiuNKCqT0qqQcpBP+t
P5yVIOqWJVWuX5VQhkwYVM1ar7SstuYFoqvMGkBSKDDndsYZsX0NWt/AtOX+1Oml
WbvELNTXFWfG3Ncit2y0mNMzzMXmdL0sLkE6Pp0SIoC8sKVWrtVXxPRAw9R5s0+U
P7luxHuiKCUsi66teFgjwkGwlI4O1pcqpSJ/G87gM/Qo3h2BmSIiT933HtIvtrj7
ogaAFSHe98fWFGv0jVcLUzaaJKugbS0nlVmZ4DY8jlfr/szbwc5UH0SEyFL8x0CY
v29mz9lepSaBK54l9WR9YRjpFKglvFVmo+lC/6D2WlrzC3sT7lxJmXwabMgwb8kG
R3Utu9TI4yMgrrYYCbikpSnW+APuNBnZS4gSkyCjdBwnAvuB7eeDVsUoar7STFoC
e0IXor3p7R1jPYMk0AJZnzkcPLevKEagqX6FIXClbMfncSVY3wCqfjrAc3npbNkS
1WK57k6YX/j/C+sL9KOcQ81Ep4lLu9tMC39YAxYW4KVhdQnRxhCvM3TlfkvxDsxO
y2XDGWIYpSHBxevX+ctgmvV2Bew7Bd0swrmgyjsAopvSqH7DBxFjLFbTpqgyxx5T
6Lr5ns2nbBwCtCKv94KZLUPhcuYIzhoiGh2OBb+iVa515lnz83A=
=C0Pe
-----END PGP SIGNATURE-----

#1104533#46
Date:
2025-08-20 06:43:32 UTC
From:
To:
Will this fix eventually be included in Trixie?

Samuli

#1104533#51
Date:
2025-08-20 15:58:19 UTC
From:
To:
Yes, all new versions are eventually published as stable updates as
you can see from the version histories at e.g.
https://tracker.debian.org/pkg/mariadb. I can't promise any schedule
right now though.

#1104533#56
Date:
2025-08-29 06:02:28 UTC
From:
To:
We believe that the bug you reported is fixed in the latest version of
mariadb, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1104533@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Otto Kekäläinen <otto@debian.org> (supplier of updated mariadb package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Tue, 26 Aug 2025 09:05:45 -0700
Source: mariadb
Architecture: source
Version: 1:11.8.3-0+deb13u1
Distribution: trixie
Urgency: medium
Maintainer: Debian MySQL Maintainers <pkg-mysql-maint@lists.alioth.debian.org>
Changed-By: Otto Kekäläinen <otto@debian.org>
Closes: 1104533
Changes:
 mariadb (1:11.8.3-0+deb13u1) trixie; urgency=medium
 .
   * New upstream maintenance release 11.8.3. For details about fixes please see
https://mariadb.com/kb/en/mariadb-11-8-3-release-notes/
   * Drop Hurd patches that are now included upstream
   * Update configuration traces to include new upstream system variables:
     - analyze-max-length (default: 4294967295)
     - innodb-linux-aio (default: auto)
   * Suppress new native AIO warning introduced in upstream a87bb96 to avoid
     mariadb-test-run failing on something that isn't a real issue
   * New upstream release includes fix for MDEV-36815 that yielded "ERROR 1267
     (HY000): Illegal mix of collations" on some systems when restarting the
     MariaDB service in Debian (Closes: #1104533)
   * Remove obsolete cleanup as upstream moved pam_mariadb_mtr.so in c05b1fe
   * Salsa CI: Remove Buster upgrades and ignore missing Trixie ones
   * Start branch debian/13-trixie for stable updates
Checksums-Sha1:
 3743ff4c773121a95162ca07aedf5732544d07e1 5653 mariadb_11.8.3-0+deb13u1.dsc
 264b1d3853d7ce82b822e577f307e414ec699168 119640174 mariadb_11.8.3.orig.tar.gz
 f4e5be6e8e481566dc763eac7c68614d52e58e18 833 mariadb_11.8.3.orig.tar.gz.asc
 2457076ff0ea26786650515a7cf6b9c6e0b118a0 287972 mariadb_11.8.3-0+deb13u1.debian.tar.xz
 e0f56b8463d39d22a4d48865b707b2b210cf6d36 13371 mariadb_11.8.3-0+deb13u1_source.buildinfo
Checksums-Sha256:
 ec78ef72089a5ea9f14cf3dded2cb3fe341a52a286569cc9b2a78a9116872475 5653 mariadb_11.8.3-0+deb13u1.dsc
 1014a85c768de8f9e9c6d4bf0b42617f3b1588be1ad371f71674ea32b87119c0 119640174 mariadb_11.8.3.orig.tar.gz
 829244b8592ab5938379889c1a43c4f7b20fcb9f97855d22d70df717a2660178 833 mariadb_11.8.3.orig.tar.gz.asc
 9894b4fc61b3c05bb174ae8166840641694b7efa618a305a759b3a8a4ef639af 287972 mariadb_11.8.3-0+deb13u1.debian.tar.xz
 50530ec7a176af9352add53097c94c80f2ca44584e4e70a976d008787ff938db 13371 mariadb_11.8.3-0+deb13u1_source.buildinfo
Files:
 0e3c1fef8df5f506bbc3a71be0eefbe9 5653 database optional mariadb_11.8.3-0+deb13u1.dsc
 3c81bc728598f5b53067220c7b729747 119640174 database optional mariadb_11.8.3.orig.tar.gz
 34bd2a8a697c0ede2151f402b28d3ff1 833 database optional mariadb_11.8.3.orig.tar.gz.asc
 3ff08698da5ae694d85c70c34b4f67cd 287972 database optional mariadb_11.8.3-0+deb13u1.debian.tar.xz
 b484f02bf45d48b63d88eace325774a2 13371 database optional mariadb_11.8.3-0+deb13u1_source.buildinfo
-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEmbRSsR88dMO0U+RvvthEn87o2ogFAmiw5pQACgkQvthEn87o
2oj0QQ/8Dz5ouV0UUCPtjfibK5at7xtGfVzSx74GNOMYmPuXBeXhsNdiBg1dN+da
o9kxQVe4yd3LyhVXn3nXJXLxKHsZ14V4UJ9C2cMwRbAqnyWOcgQZq8NR1CYBjeug
NLRhuaVp4v8+A6FxviaCqViWhv0CuScBEILkrOp1xuUDdl5OLDynkjMQzFuiS5kF
7i95v7ABEUUywZiU0nDeMiXUpZGKrE5ZINotRkvQ0NhLSFRzaDa0erqOBpmEVwxs
+T1RPkMBMkOfI7T5hWDr+/clj7uSClx9GwKQGS9bTStBvZ0VIBEsT6VqTKddAzAt
stjF6TNxStDPL+wDO8dvl5HbdNMOk/p+c/rpLJkwPb50gUrJbsJb2Dy7R6gPBa6K
/5f9ceNrjaMGELIIDNEZ+wx09cfSNy0by2bEpsdDsoV1kZcQCstXAH5WDvzwC352
J+hKT6bJgR4OTv/gV7pFGFHmB+IxjllXR3W2wtilgwPjGKweysuUQ73y7QZveMg7
9DexuwPJcGhIYNjtyijm5xE9XzhGpF/A0co12FPQIHTrLTOcuoHwXDRAzW/vvLfu
3fBDjYAB7JICg4xxU3/OVblExUPW2v9WNrJ19zDkQ34OJtq3kydQvUBWqy5jXiRe
wTPKKAKxMgx/fIsfdCroK7RFc8E7EMf3t5pmigph9CTJZpCLeEs=
=r41/
-----END PGP SIGNATURE-----

#1104533#61
Date:
2025-08-29 06:02:42 UTC
From:
To:
We believe that the bug you reported is fixed in the latest version of
mariadb, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1104533@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Otto Kekäläinen <otto@debian.org> (supplier of updated mariadb package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Tue, 26 Aug 2025 23:27:40 -0700
Source: mariadb
Architecture: source
Version: 1:10.11.14-0+deb12u1
Distribution: bookworm
Urgency: medium
Maintainer: Debian MySQL Maintainers <pkg-mysql-maint@lists.alioth.debian.org>
Changed-By: Otto Kekäläinen <otto@debian.org>
Closes: 1104533
Changes:
 mariadb (1:10.11.14-0+deb12u1) bookworm; urgency=medium
 .
   * New upstream version 10.11.14. Includes fixes for several regressions
     as noted at https://mariadb.com/kb/en/mariadb-10-11-14-release-notes/
   * Update configuration traces to include new upstream system variables:
     - analyze-max-length (default: 4294967295)
     - innodb-linux-aio (default: auto)
   * Suppress new native AIO warning introduced in upstream a87bb96 to avoid
     mariadb-test-run failing on something that isn't a real issue
   * New upstream release includes fix for MDEV-36815 that yielded "ERROR 1267
     (HY000): Illegal mix of collations" on some systems when restarting the
     MariaDB service in Debian (Closes: #1104533)
   * Update Lintian overrides for new files in latest upstream version
   * Salsa CI: Remove Buster, Bullseye-backports and ignore key errors
Checksums-Sha1:
 bc4d6326e2ca760719dce6212c59e7606161ace5 5349 mariadb_10.11.14-0+deb12u1.dsc
 b42831a282d6c44ae3aae0b282e818663aa302db 112475645 mariadb_10.11.14.orig.tar.gz
 91e92c99ca29c47fa996900259835b35b89ce508 833 mariadb_10.11.14.orig.tar.gz.asc
 4b7a1fdedcd65c575bcc573945830b9651b082e0 269904 mariadb_10.11.14-0+deb12u1.debian.tar.xz
 63be99a8c6acc735d106f75e48fd47824c1049c7 9273 mariadb_10.11.14-0+deb12u1_source.buildinfo
Checksums-Sha256:
 ee0ea1c4f3e96f93f09502345ac3caa9693dcf70ddaf07ab5886b293c7e2e832 5349 mariadb_10.11.14-0+deb12u1.dsc
 8a571cb14fb1d4e3663d8e98f3d4200c042fc8b2a4aaaab495860dea8b7d052f 112475645 mariadb_10.11.14.orig.tar.gz
 63440758a8b9ced1ef3ec0e0947e6b060cc67c9919cd75a7386493016552b022 833 mariadb_10.11.14.orig.tar.gz.asc
 77ff9a34ea81d8a06dc1ea87edfa5a40fde9ef0b707f6363a22d67a87047d7c4 269904 mariadb_10.11.14-0+deb12u1.debian.tar.xz
 8d4a2076197856a71f34042a0d3110c9e25fdae56d57addeccf5e4c9bdbd63d0 9273 mariadb_10.11.14-0+deb12u1_source.buildinfo
Files:
 ffe0ac3f7d93691b170110986fe68ce2 5349 database optional mariadb_10.11.14-0+deb12u1.dsc
 7fddaba5c113918119f74974ab211f54 112475645 database optional mariadb_10.11.14.orig.tar.gz
 efa50d7fe27b19219487280d4527f04d 833 database optional mariadb_10.11.14.orig.tar.gz.asc
 11ae31e42c559ba546370a0a679a5fe5 269904 database optional mariadb_10.11.14-0+deb12u1.debian.tar.xz
 14620a9ed734d67f827614df28324cc1 9273 database optional mariadb_10.11.14-0+deb12u1_source.buildinfo
-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEmbRSsR88dMO0U+RvvthEn87o2ogFAmiw6u8ACgkQvthEn87o
2oiUQRAAtDyx+KCEWBc16yZT8CSbsZMFGOg88z+HxB5jB8HHAqomEU5pqshaUz+R
Z7xfp4VFczWEt3cKuq3MYPiXZVOtAafUNYZ4yLz2S2IEDubryfWZSK2/w6VOCWAZ
JVsL36MNB3onBq6yG4sDYX5HV4+EQnhZkQrD5r05tBbfKlKZaw0lkgrNKq/EOWsx
XgqBN2MZ4pFFXPXZ39ES+ul9S1EcGFHly/d9iseGKhz+JWxz+4FerL6Yux78Ng8m
zFenISQzu/nvHKu/TaO0PNtRiBRMNGTHsrI2KmPJtBal8BtVYBtATn8/EYOqbLIN
R2QffTHdhEzNX8UAYm8DTtfNUy14F14RvsQWaIXKJAh2AgnUMX6bSeHw8IKi7ic9
EJQEJ2iVP2nPPkTJUWFR8rR4lTIbaxop2D7X+bT0d4DoHtbCo0AJ05j6EzU9E5Fn
+CJbCvX9KMMcL4QzoRuiT9HCdBIpuEGiTkgOCJbd7ce7D5eEyCsPoTAKSYgLhtzQ
gi0nhcpFB1JqWo9YCWV29EVbnNJWOQUaY0Vw1rS7RtQSQiZxxWrpVuSp3/pgKyV5
1WTlu2jqit4e/ZRZ37WWU+Dye9VvgbVKiFKsxeokVFpdbwHWA0ZMK1pqr/L46RZG
YMz1Gwo+eriD6Fj1ZwQEtHkxHMA3Sm1YOkUrMNyaUx6GeV5veyk=
=/Wc0
-----END PGP SIGNATURE-----