Below is the list of changes that have just been committed into a local
5.1 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@stripped, 2008-04-22 21:55:09+02:00, msvensson@stripped +1 -0
Always return 0 inidcating that socket path would not be truncated when
running on windows. Apparently Cygwin tries to emulate UNIX Socket and thus
fails to create one.
mysql-test/lib/My/Platform.pm@stripped, 2008-04-22 21:55:07+02:00, msvensson@stripped +2 -0
Always return 0 inidcating that socket path would not be truncated when
running on windows. Apparently Cygwin tries to emulate UNIX Socket and thus
fails to create one.
diff -Nrup a/mysql-test/lib/My/Platform.pm b/mysql-test/lib/My/Platform.pm
--- a/mysql-test/lib/My/Platform.pm 2008-04-22 12:43:36 +02:00
+++ b/mysql-test/lib/My/Platform.pm 2008-04-22 21:55:07 +02:00
@@ -96,6 +96,8 @@ sub check_socket_path_length {
my ($path)= @_;
my $truncated= 0;
+ return 0 if IS_WINDOWS;
+
require IO::Socket::UNIX;
my $sock = new IO::Socket::UNIX
| Thread |
|---|
| • bk commit into 5.1 tree (msvensson:1.2588) | msvensson | 22 Apr |