head	1.2;
access;
symbols
	pkgsrc-2013Q2:1.2.0.4
	pkgsrc-2013Q2-base:1.2
	pkgsrc-2012Q4:1.2.0.2
	pkgsrc-2012Q4-base:1.2
	pkgsrc-2012Q1:1.1.0.6
	pkgsrc-2012Q1-base:1.1
	pkgsrc-2011Q4:1.1.0.4
	pkgsrc-2011Q4-base:1.1
	pkgsrc-2011Q3:1.1.0.2
	pkgsrc-2011Q3-base:1.1;
locks; strict;
comment	@# @;


1.2
date	2012.04.14.04.04.48;	author taca;	state dead;
branches;
next	1.1;

1.1
date	2011.08.02.16.15.08;	author taca;	state Exp;
branches
	1.1.6.1;
next	;

1.1.6.1
date	2012.04.18.13.50.48;	author tron;	state dead;
branches;
next	;


desc
@@


1.2
log
@Update mysql5-client and mysql5-server to 5.0.96, last release of
MySQL 5.0 series.


5.0.96

* yaSSL was upgraded from version 1.7.2 to 2.2.0.

5.0.95

* No change log entries.

5.0.94

* Some files in the MySQL Server sources containing legacy code still used the
  LGPL license. Such files that were no longer in use have been removed. Any
  such code that remains following this removal now appears under the GPL
  only. (Bug #11896296)

  References: See also Bug #11840513.

* Under some circumstances, the result of SUBSTRING_INDEX() incorrectly
  depended on the contents of the previous row. (Bug #42404, Bug #11751514)

5.0.93

* Security Fix: The PolyFromWKB() function could crash the server when
  improper WKB data was passed to the function. (Bug #51875, Bug #11759554,
  CVE-2010-3840)

* Security Fix: Bug #36544 was fixed.

* Security Fix: Bug #49124 and Bug #11757121 were fixed.

* Two unused test files in storage/ndb/test/sql contained incorrect versions
  of the GNU Lesser General Public License. The files and the directory
  containing them have been removed. (Bug #11810224)

  References: See also Bug #11810156.

* On FreeBSD and OpenBSD, the server incorrectly checked the range of the
  system date, causing legal values to be rejected. (Bug #55755, Bug
  #11763089)
@
text
@$NetBSD: patch-mysql-test_r_func__time.result,v 1.1 2011/08/02 16:15:08 taca Exp $

* Handling of time_t: http://lists.mysql.com/commits/128103

--- mysql-test/r/func_time.result.orig	2011-01-25 11:52:36.000000000 +0000
+++ mysql-test/r/func_time.result
@@@@ -1323,4 +1323,15 @@@@ SELECT '2008-02-18' + INTERVAL 1 FRAC_SE
 ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FRAC_SECOND' at line 1
 SELECT '2008-02-18' - INTERVAL 1 FRAC_SECOND;
 ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FRAC_SECOND' at line 1
+#
+# Bug #52315 part 2 : utc_date() crashes when system time > year 2037
+#
+SET TIMESTAMP=-147490000;
+SELECT UTC_TIMESTAMP();
+SET TIMESTAMP=2147483648;
+SELECT UTC_TIMESTAMP();
+SET TIMESTAMP=2147483646;
+SELECT UTC_TIMESTAMP();
+SET TIMESTAMP=2147483647;
+SELECT UTC_TIMESTAMP();
 End of 5.0 tests
@


1.1
log
@Add patches refering link provided from PR pkg/45185 by Andras Horvath.
And minor update of comments in patches.

Bump PKGREVISION.
@
text
@d1 1
a1 1
$NetBSD$
@


1.1.6.1
log
@Pullup ticket #3744 - requested by taca
databases/mysql5-client: security update
databases/mysql5-server: security update

Revisions pulled up:
- databases/mysql5-client/Makefile.common                       1.42
- databases/mysql5-client/distinfo                              1.31
- databases/mysql5-client/patches/patch-ap                      1.3
- databases/mysql5-server/Makefile                              1.33
- databases/mysql5-server/PLIST                                 1.18
- databases/mysql5-server/distinfo                              1.29
- databases/mysql5-server/patches/patch-ca                      1.5
- databases/mysql5-server/patches/patch-include_my__time.h      deleted
- databases/mysql5-server/patches/patch-mysql-test_r_func__time.result deleted
- databases/mysql5-server/patches/patch-mysql-test_t_func__time.test deleted
- databases/mysql5-server/patches/patch-sql-common_my__time.c   deleted
- databases/mysql5-server/patches/patch-sql_mysqld.cc           deleted
- databases/mysql5-server/patches/patch-sql_set__var.cc         deleted
- databases/mysql5-server/patches/patch-sql_sql__class.h        deleted

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Sat Apr 14 04:04:48 UTC 2012

   Modified Files:
   	pkgsrc/databases/mysql5-client: Makefile.common distinfo
   	pkgsrc/databases/mysql5-client/patches: patch-ap
   	pkgsrc/databases/mysql5-server: Makefile PLIST distinfo
   	pkgsrc/databases/mysql5-server/patches: patch-ca
   Removed Files:
   	pkgsrc/databases/mysql5-server/patches: patch-include_my__time.h
   	    patch-mysql-test_r_func__time.result
   	    patch-mysql-test_t_func__time.test patch-sql-common_my__time.c
   	    patch-sql_mysqld.cc patch-sql_set__var.cc patch-sql_sql__class.h

   Log Message:
   Update mysql5-client and mysql5-server to 5.0.96, last release of
   MySQL 5.0 series.

   5.0.96

   * yaSSL was upgraded from version 1.7.2 to 2.2.0.

   5.0.95

   * No change log entries.

   5.0.94

   * Some files in the MySQL Server sources containing legacy code still used the
     LGPL license. Such files that were no longer in use have been removed. Any
     such code that remains following this removal now appears under the GPL
     only. (Bug #11896296)

     References: See also Bug #11840513.

   * Under some circumstances, the result of SUBSTRING_INDEX() incorrectly
     depended on the contents of the previous row. (Bug #42404, Bug #11751514)

   5.0.93

   * Security Fix: The PolyFromWKB() function could crash the server when
     improper WKB data was passed to the function. (Bug #51875, Bug #11759554,
     CVE-2010-3840)

   * Security Fix: Bug #36544 was fixed.

   * Security Fix: Bug #49124 and Bug #11757121 were fixed.

   * Two unused test files in storage/ndb/test/sql contained incorrect versions
     of the GNU Lesser General Public License. The files and the directory
     containing them have been removed. (Bug #11810224)

     References: See also Bug #11810156.

   * On FreeBSD and OpenBSD, the server incorrectly checked the range of the
     system date, causing legal values to be rejected. (Bug #55755, Bug
     #11763089)
@
text
@d1 1
a1 1
$NetBSD: patch-mysql-test_r_func__time.result,v 1.1 2011/08/02 16:15:08 taca Exp $
@


