diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2019-08-17 16:27:06 +0200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2019-08-29 21:40:44 +1200 |
commit | 945eb72e9fd616d936f29d8d77f03c077a787ad4 (patch) | |
tree | 57b27ef95348fb141f4692fecaf3d59c7ab754c1 /dev-perl/DBD-mysql/files | |
parent | profiles: package.use.stable.mask DBD-mysql USE=mariadb (diff) | |
download | gentoo-945eb72e9fd616d936f29d8d77f03c077a787ad4.tar.gz gentoo-945eb72e9fd616d936f29d8d77f03c077a787ad4.tar.bz2 gentoo-945eb72e9fd616d936f29d8d77f03c077a787ad4.zip |
dev-perl/DBD-mysql: bump to v4.050
Closes: https://bugs.gentoo.org/661480
Closes: https://github.com/gentoo/gentoo/pull/12731
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-perl/DBD-mysql/files')
-rw-r--r-- | dev-perl/DBD-mysql/files/DBD-mysql-4.050-fix-float-type-conversion.patch | 48 | ||||
-rw-r--r-- | dev-perl/DBD-mysql/files/DBD-mysql-4.050-fix-for-MariaDB-10.3.13-with-zerofil.patch | 36 |
2 files changed, 84 insertions, 0 deletions
diff --git a/dev-perl/DBD-mysql/files/DBD-mysql-4.050-fix-float-type-conversion.patch b/dev-perl/DBD-mysql/files/DBD-mysql-4.050-fix-float-type-conversion.patch new file mode 100644 index 000000000000..cda1cabdc24d --- /dev/null +++ b/dev-perl/DBD-mysql/files/DBD-mysql-4.050-fix-float-type-conversion.patch @@ -0,0 +1,48 @@ +From: Pali <pali@cpan.org> +Date: Fri, 24 Feb 2017 19:51:36 +0100 +Subject: [PATCH] Fix type conversions + Calling SvNV() for magical scalar is not enough for float type conversion. + It caused problem for Amavis in tainted mode -- all float values were zero. + On the other hand SvIV() and SvUV() seems to work fine. To be sure that + correct value of float is in scalar use sv_setnv() with explicit NV float + value. Similar code is changed also for integers IV/UV. + . + This patch should fix reported Amavis bug: + https://github.com/perl5-dbi/DBD-mysql/issues/78 + . + See also reported perl bug about SvNV(): + https://rt.perl.org/Public/Bug/Display.html?id=130801 +Bugs: https://github.com/perl5-dbi/DBD-mysql/issues/78 +Bugs-Debian: https://bugs.debian.org/856064 +Last-Update: 2019-01-09 +Reviewed-By: Xavier Guimard <x.guimard@free.fr>, + gregor herrmann <gregoa@debian.org> + +--- a/dbdimp.c ++++ b/dbdimp.c +@@ -4447,8 +4447,7 @@ + if (!(fields[i].flags & ZEROFILL_FLAG)) + { + /* Coerce to double and set scalar as NV */ +- (void) SvNV(sv); +- SvNOK_only(sv); ++ sv_setnv(sv, SvNV(sv)); + } + break; + +@@ -4459,13 +4458,11 @@ + /* Coerce to integer and set scalar as UV resp. IV */ + if (fields[i].flags & UNSIGNED_FLAG) + { +- (void) SvUV(sv); +- SvIOK_only_UV(sv); ++ sv_setuv(sv, SvUV(sv)); + } + else + { +- (void) SvIV(sv); +- SvIOK_only(sv); ++ sv_setiv(sv, SvIV(sv)); + } + } + break; diff --git a/dev-perl/DBD-mysql/files/DBD-mysql-4.050-fix-for-MariaDB-10.3.13-with-zerofil.patch b/dev-perl/DBD-mysql/files/DBD-mysql-4.050-fix-for-MariaDB-10.3.13-with-zerofil.patch new file mode 100644 index 000000000000..f3d5e5bf4cbc --- /dev/null +++ b/dev-perl/DBD-mysql/files/DBD-mysql-4.050-fix-for-MariaDB-10.3.13-with-zerofil.patch @@ -0,0 +1,36 @@ +From 8b5ba5f9c8d239328ecbc862aba203d44819e2f5 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= <git@myname.nl> +Date: Tue, 5 Mar 2019 16:24:17 +0100 +Subject: [PATCH] Fix for MariaDB 10.3.13 with zerofil + +Issue: #304 + +Bug: https://github.com/perl5-dbi/DBD-mysql/issues/304 +Bug-Debian: https://bugs.debian.org/923541 + +--- + dbdimp.c | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/dbdimp.c b/dbdimp.c +index a9c37cf..82c96d2 100644 +--- a/dbdimp.c ++++ b/dbdimp.c +@@ -4055,9 +4055,13 @@ int dbd_describe(SV* sth, imp_sth_t* imp_sth) + break; + + default: +-#if MYSQL_VERSION_ID > 100300 ++#if (MYSQL_VERSION_ID > 100300) && (MYSQL_VERSION_ID < 100313) + // https://jira.mariadb.org/browse/MDEV-18143 + buffer->buffer_length= fields[i].max_length ? fields[i].max_length : 2; ++#elif MYSQL_VERSION_ID > 100312 ++ // https://jira.mariadb.org/browse/MDEV-18823 ++ buffer->buffer_length= fields[i].max_length ? fields[i].max_length + 1 : 2; ++ buffer->buffer_length= fields[i].length > fields[i].max_length ? fields[i].length + 1 : 2; + #else + buffer->buffer_length= fields[i].max_length ? fields[i].max_length : 1; + #endif +-- +2.20.1 + |