From: Date: May 2 2008 11:22am Subject: bk commit into 5.0 tree (msvensson:1.2613) BUG#36465 List-Archive: http://lists.mysql.com/commits/46285 X-Bug: 36465 Message-Id: <20080502092214.106C230EA34@pilot> 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@stripped, 2008-05-02 11:22:10+02:00, msvensson@stripped +1 -0 Bug#36465 mysqltest should always use the --tmpdir client/mysqltest.c@stripped, 2008-05-02 11:22:09+02:00, msvensson@stripped +1 -1 Use the --tmpdir location to create temporary files diff -Nrup a/client/mysqltest.c b/client/mysqltest.c --- a/client/mysqltest.c 2008-03-23 18:53:33 +01:00 +++ b/client/mysqltest.c 2008-05-02 11:22:09 +02:00 @@ -1536,7 +1536,7 @@ int dyn_string_cmp(DYNAMIC_STRING* ds, c DBUG_ENTER("dyn_string_cmp"); DBUG_PRINT("enter", ("fname: %s", fname)); - if ((fd= create_temp_file(temp_file_path, NULL, + if ((fd= create_temp_file(temp_file_path, TMPDIR, "tmp", O_CREAT | O_SHARE | O_RDWR, MYF(MY_WME))) < 0) die("Failed to create temporary file for ds");