diff -up DBD-mysql-5.001/t/10connect.t.orig DBD-mysql-5.001/t/10connect.t --- DBD-mysql-5.001/t/10connect.t.orig 2023-10-12 17:14:01.117134826 +0200 +++ DBD-mysql-5.001/t/10connect.t 2023-10-12 17:14:46.482494421 +0200 @@ -46,7 +46,7 @@ like( 'get_info SQL_DRIVER_VER like dd.dd.dddd' ); -like($driver_ver, qr/^04\./, 'SQL_DRIVER_VER starts with "04." (update for 5.x)'); +like($driver_ver, qr/^05\./, 'SQL_DRIVER_VER starts with "05." (update for 6.x)'); # storage engine function is @@storage_engine in up to 5.5.03 # at that version, @@default_storage_engine is introduced diff -up DBD-mysql-5.001/t/version.t.orig DBD-mysql-5.001/t/version.t --- DBD-mysql-5.001/t/version.t.orig 2023-10-12 17:14:16.136253877 +0200 +++ DBD-mysql-5.001/t/version.t 2023-10-12 17:15:13.153705834 +0200 @@ -7,7 +7,7 @@ use Bundle::DBD::mysql; use Test::More; like($DBD::mysql::VERSION, qr/^\d\.\d{2,3}(|_\d\d)$/, 'version format'); -like($DBD::mysql::VERSION, qr/^4\./, 'version starts with "4." (update for 5.x)'); +like($DBD::mysql::VERSION, qr/^5\./, 'version starts with "5." (update for 6.x)'); is( $DBD::mysql::VERSION, $Bundle::DBD::mysql::VERSION,