summaryrefslogtreecommitdiff
path: root/netware
diff options
context:
space:
mode:
authorunknown <jamppa@suse9-x86.mysql.com>2005-11-18 18:25:46 +0100
committerunknown <jamppa@suse9-x86.mysql.com>2005-11-18 18:25:46 +0100
commite8885320dd8f87e0f248fcd822b01423febbbe85 (patch)
treed78b10612493fc99569ad542f47edb15a37dd491 /netware
parentd40082448ba376f582f88bcc1f00b284523cf40a (diff)
downloadmariadb-git-e8885320dd8f87e0f248fcd822b01423febbbe85.tar.gz
Netware specific changes for 5.0.16a
client/mysql.cc: Fixed option. client/mysqladmin.cc: Fixed option. client/mysqlbinlog.cc: Fixed option. client/mysqlcheck.c: Fixed option. client/mysqldump.c: Fixed option. client/mysqlimport.c: Fixed option. client/mysqlshow.c: Fixed option. configure.in: Changed version for Netware. myisam/myisamchk.c: Fixed option. myisam/myisampack.c: Fixed option. netware/mysql_test_run.c: NetWare specific changes: Define MYSQL_CHECK environment variable to make mysqlcheck test case pass
Diffstat (limited to 'netware')
-rw-r--r--netware/mysql_test_run.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/netware/mysql_test_run.c b/netware/mysql_test_run.c
index 92ed89b4770..98b7ab7fd8c 100644
--- a/netware/mysql_test_run.c
+++ b/netware/mysql_test_run.c
@@ -1173,6 +1173,9 @@ void setup(char *file)
setenv("MYSQL",file_path,1);
snprintf(file_path, PATH_MAX*2, "%s/mysqlshow --no-defaults --user=root --port=%u", bin_dir, master_port);
setenv("MYSQL_SHOW",file_path,1);
+ snprintf(file_path, PATH_MAX*2, "%s/mysqlcheck --no-defaults -uroot --port=%u", bin_dir, master_port);
+ setenv("MYSQL_CHECK",file_path,1);
+
}
/******************************************************************************