./databases/mysql5-server, MySQL 5, a free SQL database (server)

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: pkgsrc-2007Q2, Version: 5.0.45, Package name: mysql-server-5.0.45, Maintainer: xtraeme

MySQL is a SQL (Structured Query Language) database server. SQL is the
most popular database language in the world. MySQL is a client-server
implementation that consists of a server daemon `mysqld' and many
different client programs/libraries.

The main goals of MySQL are speed and robustness.

The base upon which MySQL is built is a set of routines that have been
used in a highly demanding production environment for many years. While
MySQL is still in development it already offers a rich and highly useful
function set.

The official way to pronounce 'MySQL' is 'My Ess Que Ell' (Not MY-SEQUEL).

This package contains the MySQL server programs and libraries.

DEINSTALL [+/-]

Required to run:
[lang/perl5] [databases/mysql5-client]

Required to build:
[devel/autoconf] [devel/libtool-base] [devel/gmake]

Master sites: (Expand)

SHA1: a5fba8e004acc43ac1a576d728f10215f54ebe20
RMD160: ee6717c65dc7bb6b5b596b90ef6c47c7fdebf5fb
Filesize: 23860.606 KB

Version history: (Expand)


CVS history: (Expand)


   2007-07-28 18:46:40 by Geert Hendrickx | Files touched by this commit (13) | Package updated
Log message:
Pullup ticket 2146 - requested by tron
security update for mysql5

- pkgsrc/databases/mysql5-client/Makefile.common	1.25
- pkgsrc/databases/mysql5-client/PLIST			1.7
- pkgsrc/databases/mysql5-client/distinfo		1.19
- pkgsrc/databases/mysql5-client/patches/patch-ac	removed
- pkgsrc/databases/mysql5-client/patches/patch-ad	1.6
- pkgsrc/databases/mysql5-client/patches/patch-ae	1.9
- pkgsrc/databases/mysql5-client/patches/patch-bg	removed
- pkgsrc/databases/mysql5-server/PLIST			1.11
- pkgsrc/databases/mysql5-server/distinfo		1.16
- pkgsrc/databases/mysql5-server/patches/patch-aa	1.5
- pkgsrc/databases/mysql5-server/patches/patch-ac	removed
- pkgsrc/databases/mysql5-server/patches/patch-ah	1.6
- pkgsrc/databases/mysql5-server/patches/patch-ao	removed

   Module Name:	pkgsrc
   Committed By:	tron
   Date:		Sun Jul 15 19:22:07 UTC 2007

   Modified Files:
	   pkgsrc/databases/mysql5-client: Makefile.common PLIST distinfo
	   pkgsrc/databases/mysql5-client/patches: patch-ad patch-ae
	   pkgsrc/databases/mysql5-server: PLIST distinfo
	   pkgsrc/databases/mysql5-server/patches: patch-aa patch-ah
   Removed Files:
	   pkgsrc/databases/mysql5-client/patches: patch-ac patch-bg
	   pkgsrc/databases/mysql5-server/patches: patch-ac patch-ao

   Log message:
   Update "mysql5-client" and "mysql5-server" packages to \ 
version 5.0.45.
   Change since version 5.0.41:
   - Functionality added or changed:
     - A new status variable, Com_call_procedure, indicates the number of calls
       to stored procedures. (Bug#27994)
     - NDB Cluster: The server source tree now includes scripts to simplify
       building MySQL with SCI support. For more information about SCI
       interconnects and these build scripts, see Section 15.9.1,
       Configuring MySQL Cluster to use SCI Sockets. (Bug#25470)
     - Prior to this release, when DATE values were compared with DATETIME values
       the time portion of the DATETIME value was ignored. Now a DATE value is
       coerced to the DATETIME type by adding the time portion as 00:00:00. To
       mimic the old behavior use the CAST() function in the following way:
       SELECT date_field = CAST(NOW() as DATE);. (Bug#28929)
   - A large number of bugs including these security problems have been fixed:
     - A malformed password packet in the
       connection protocol could cause the server to crash. Thanks for Dormando
       for reporting this bug and providing details and a proof of concept.
       (Bug#28984)
     - CREATE TABLE LIKE did not require any privileges on the source table. Now
       it requires the SELECT privilege. (Bug#25578)
     - In addition, CREATE TABLE LIKE was not isolated from alteration by other
       connections, which resulted in various errors and incorrect binary log
       order when trying to execute concurrently a CREATE TABLE LIKE statement
       and either DDL statements on the source table or DML or DDL statements on
       the target table. (Bug#23667)