From b1cb5b6ff02ef6b7aa869e4191adc645b318cec6 Mon Sep 17 00:00:00 2001 From: "monty@hundin.mysql.fi" <> Date: Sat, 18 Aug 2001 10:49:00 +0300 Subject: Portability fixes. Let myisamchk generate a new checksum for compressed data. Don't unconditionally force filenames to lower case on windows. Update mysqltest to match 4.0 source (to get some of the new bug fixes into 3.23) --- sql/sql_test.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sql/sql_test.cc') diff --git a/sql/sql_test.cc b/sql/sql_test.cc index 3edfdd3d5ef..c4c2855a63e 100644 --- a/sql/sql_test.cc +++ b/sql/sql_test.cc @@ -189,7 +189,10 @@ TEST_join(JOIN *join) void mysql_print_status(THD *thd) { + char current_dir[FN_REFLEN]; printf("\nStatus information:\n\n"); + my_getwd(current_dir, sizeof(current_dir),MYF(0)); + printf("Current dir: %s\n", current_dir); if (thd) thd->proc_info="locks"; thr_print_locks(); // Write some debug info -- cgit v1.2.1