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-03-04 12:20:40+01:00, msvensson@stripped +1 -0
Fix windows paths also after eval
client/mysqltest.c@stripped, 2008-03-04 12:20:37+01:00, msvensson@stripped +5 -0
Fix windows paths also after eval
diff -Nrup a/client/mysqltest.c b/client/mysqltest.c
--- a/client/mysqltest.c 2008-02-28 11:53:23 +01:00
+++ b/client/mysqltest.c 2008-03-04 12:20:37 +01:00
@@ -441,6 +441,8 @@ void do_eval(DYNAMIC_STRING *query_eval,
void str_to_file(const char *fname, char *str, int size);
void str_to_file2(const char *fname, char *str, int size, my_bool append);
+void fix_win_paths(const char *val, int len);
+
#ifdef __WIN__
void free_tmp_sh_file();
void free_win_path_patterns();
@@ -594,6 +596,9 @@ void do_eval(DYNAMIC_STRING *query_eval,
break;
}
}
+#ifdef __WIN__
+ fix_win_paths(query_eval->str, query_eval->length);
+#endif
DBUG_VOID_RETURN;
}
| Thread |
|---|
| • bk commit into 5.1 tree (msvensson:1.2547) | msvensson | 4 Mar |