OBS User unknown 2007-01-10 16:56:35 +00:00 committed by Git OBS Bridge
parent 8097eedd27
commit b8a3e8ea69
4 changed files with 84 additions and 5 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:37d65f2b9182c6bc221ae40aeda9c977ba55edcad05e4913265bd63b8cb0282b
size 93931

3
DBD-mysql-4.001.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c9fb8b4eef116ba0b22cccbfd9f31fa282cee175fb4b2e9c110bba4cc6e9ebbd
size 95581

View File

@ -1,3 +1,44 @@
-------------------------------------------------------------------
Tue Jan 9 18:51:27 CET 2007 - anicka@suse.cz
- update to 4.001
* Fix handling of unsigned integer values in result sets when
using server-side prepared statements.
* Do not tell Perl that the contents of binary fields are UTF-8.
* Fix double-free of bound parameters when freeing statements.
* Make sure to handle "magical" values in a couple of places.
* Update the hints about what to do when zlib is found missing
while linking.
* Explicitly initialize the MySQL client library to avoid
possible race conditions in a multithreaded application.
* Fix warning when no connection attributes are passed
to the connect method.
* Removed redundant warnings when commit or rollback
is called while AutoCommit is enabled.
* Report correct type for decimal columns from MySQL 5.0 and later
* Fix t/40bindparam.t to work when ANSI_QUOTES SQL_MODE is set.
* Return a statement handle with an error when column_info is
called on a table that does not exist.
* Fix handling of table names with characters that did not
match /\w/ in the column_info method.
* Fix handling of negative integers bound to a column marked
as SQL_INTEGER.
* Add support for the primary_key_info method.
* Fixed Bundle::DBD::mysql to only include modules required
for using DBD::mysql, not the old Mysql package.
* Updated Makefile.PL to not include files in .svn directories
* Fixed various compile warnings in mysql.xs (ISO C)
* Cleaned up stored procedure examples, made strict
* Fixed bug that blew away subsequent result sets if you
fetched all rows, only in result sets that had more
than one row.
* Added test for bug #14979
http://rt.cpan.org/Ticket/Display.html?id=14979
* Tested with ALL mysql versions, fixed 40types, 40bind_param
tests to work with 4.0, 4.1
* Fixed dbdimp.c to not test for MYSQL_DATA_TRUNCATED
unless >= mysql 5.0
-------------------------------------------------------------------
Tue Jan 2 14:41:33 CET 2007 - anicka@suse.cz

View File

@ -1,5 +1,5 @@
#
# spec file for package perl-DBD-mysql (Version 4.00)
# spec file for package perl-DBD-mysql (Version 4.001)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -20,7 +20,7 @@ Provides: mysqperl perl-Msql-Mysql-modules
Requires: perl-DBI perl-Data-ShowTable
Requires: perl = %{perl_version}
Autoreqprov: on
Version: 4.00
Version: 4.001
Release: 1
Summary: Interface to the MySQL database
Group: Development/Libraries/Perl
@ -63,6 +63,44 @@ make
/var/adm/perl-modules/perl-DBD-mysql
%changelog -n perl-DBD-mysql
* Tue Jan 09 2007 - anicka@suse.cz
- update to 4.001
* Fix handling of unsigned integer values in result sets when
using server-side prepared statements.
* Do not tell Perl that the contents of binary fields are UTF-8.
* Fix double-free of bound parameters when freeing statements.
* Make sure to handle "magical" values in a couple of places.
* Update the hints about what to do when zlib is found missing
while linking.
* Explicitly initialize the MySQL client library to avoid
possible race conditions in a multithreaded application.
* Fix warning when no connection attributes are passed
to the connect method.
* Removed redundant warnings when commit or rollback
is called while AutoCommit is enabled.
* Report correct type for decimal columns from MySQL 5.0 and later
* Fix t/40bindparam.t to work when ANSI_QUOTES SQL_MODE is set.
* Return a statement handle with an error when column_info is
called on a table that does not exist.
* Fix handling of table names with characters that did not
match /\w/ in the column_info method.
* Fix handling of negative integers bound to a column marked
as SQL_INTEGER.
* Add support for the primary_key_info method.
* Fixed Bundle::DBD::mysql to only include modules required
for using DBD::mysql, not the old Mysql package.
* Updated Makefile.PL to not include files in .svn directories
* Fixed various compile warnings in mysql.xs (ISO C)
* Cleaned up stored procedure examples, made strict
* Fixed bug that blew away subsequent result sets if you
fetched all rows, only in result sets that had more
than one row.
* Added test for bug #14979
http://rt.cpan.org/Ticket/Display.html?id=14979
* Tested with ALL mysql versions, fixed 40types, 40bind_param
tests to work with 4.0, 4.1
* Fixed dbdimp.c to not test for MYSQL_DATA_TRUNCATED
unless >= mysql 5.0
* Tue Jan 02 2007 - anicka@suse.cz
- update to 4.00
* fixed varying number of columns in multiple result sets