[packages/percona-server/v5.0.x: 124/202] - oudated

glen glen at pld-linux.org
Wed Oct 21 16:19:27 CEST 2015


commit 7f0d0562ee97a6fe887c10ff10e730a3e22d6f14
Author: Elan Ruusamäe <glen at pld-linux.org>
Date:   Wed Aug 26 09:41:45 2009 +0000

    - oudated
    
    Changed files:
        mysql-bug-24148.patch -> 1.1.2.1
        mysql-bug-27694.patch -> 1.2.2.1
        mysql-bug-29082.patch -> 1.1.2.1

 mysql-bug-24148.patch | 51 ---------------------------------------------------
 mysql-bug-27694.patch | 10 ----------
 mysql-bug-29082.patch | 16 ----------------
 3 files changed, 77 deletions(-)
---
diff --git a/mysql-bug-24148.patch b/mysql-bug-24148.patch
deleted file mode 100644
index 1e04db2..0000000
--- a/mysql-bug-24148.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-From: msvensson at mysql dot com
-Date: December 22 2006 12:05am
-Subject: bk commit into 5.0 tree (msvensson:1.2352) BUG#24148
-
-Below is the list of changes that have just been committed into a local
-5.0 repository of msvensson. When msvensson does a push these changes will
-be propagated to the main repository and, within 24 hours after the
-push, to the public repository.
-For information on how to access the public repository
-see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
-
-ChangeSet at stripped, 2006-12-22 00:05:40+01:00, msvensson at stripped +1 -0
-  Bug#24148 regression tests hang with SSL enabled
-   - Don't call SSL_shutdown a second time
-
-  vio/viossl.c at stripped, 2006-12-22 00:05:39+01:00, msvensson at stripped +9 -5
-    SSL_shutdown might return 0 indicating that it should be called once
-    again for a graceful shutdown. Since the socket are going to be closed
-    anyway ther is no need for the second call.
-
-# This is a BitKeeper patch.  What follows are the unified diffs for the
-# set of deltas contained in the patch.  The rest of the patch, the part
-# that BitKeeper cares about, is below these diffs.
-# User:	msvensson
-# Host:	pilot.mysql.com
-# Root:	/home/msvensson/mysql/mysql-5.0-maint
-
---- 1.38/vio/viossl.c	2006-11-20 21:41:56 +01:00
-+++ 1.39/vio/viossl.c	2006-12-22 00:05:39 +01:00
-@@ -126,12 +126,16 @@
-   {
-     switch ((r= SSL_shutdown(ssl)))
-     {
--    case 1: /* Shutdown successful */
-+    case 1:
-+      /* Shutdown successful */
-+      break;
-+    case 0:
-+      /*
-+        Shutdown not yet finished - since the socket is going to
-+        be closed there is no need to call SSL_shutdown() a second
-+        time to wait for the other side to respond
-+      */
-       break;
--    case 0: /* Shutdown not yet finished, call it again */
--      if ((r= SSL_shutdown(ssl) >= 0))
--        break;
--      /* Fallthrough */
-     default: /* Shutdown failed */
-       DBUG_PRINT("vio_error", ("SSL_shutdown() failed, error: %d",
-                                SSL_get_error(ssl, r)));
diff --git a/mysql-bug-27694.patch b/mysql-bug-27694.patch
deleted file mode 100644
index 4dba319..0000000
--- a/mysql-bug-27694.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- mysql-5.0.41/scripts/mysqlhotcopy.sh~	2007-06-21 14:17:42.000000000 +0300
-+++ mysql-5.0.41/scripts/mysqlhotcopy.sh	2007-06-21 14:17:43.671033114 +0300
-@@ -840,6 +840,7 @@
-     my $quote = $dbh->get_info(29); # SQL_IDENTIFIER_QUOTE_CHAR
-     if ($quote) {
-       foreach (@dbh_tables) {
-+        s/$quote.+$quote\.//; # perl-DBD-mysql-4.003 fix
-         s/^$quote(.*)$quote$/$1/;
-         s/$quote$quote/$quote/g;
-       }
diff --git a/mysql-bug-29082.patch b/mysql-bug-29082.patch
deleted file mode 100644
index 0cb62d9..0000000
--- a/mysql-bug-29082.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- mysql-5.0.41/scripts/mysqlhotcopy.sh~	2007-06-21 14:37:22.000000000 +0300
-+++ mysql-5.0.41/scripts/mysqlhotcopy.sh	2007-06-21 14:37:24.924257114 +0300
-@@ -605,7 +605,12 @@
- 	# add recursive option for scp
- 	$cp.= " -r" if $^O =~ /m^(solaris|linux|freebsd|darwin)$/ && $method =~ /^scp\b/;
- 
--	my @non_raid = map { "'$_'" } grep { ! m:/$raid_dir_regex/[^/]+$: } @$files;
-+	my @non_raid;
-+	if (@$raid_dirs) {
-+	    @non_raid = map { "'$_'" } grep { ! m:/$raid_dir_regex/[^/]+$: } @$files;
-+	} else {
-+	    @non_raid = @$files;
-+	}
- 
- 	# add files to copy and the destination directory
- 	safe_system( $cp, @non_raid, "'$target'" ) if (@non_raid);
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/percona-server.git/commitdiff/431f68fe79a66d5dfdd53f2655709e6c925fbc22



More information about the pld-cvs-commit mailing list