1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

added mysqlmanager-pwgen

added set_exec_stdout and set_exec_stderr to mysqlmanager to be able 
to redirect stdout and stderr
added support for MY_FULL_IO to my_read, so we can tell it to read
a number of bytes in as many chunks as it takes instead of one try
This commit is contained in:
sasha@mysql.sashanet.com
2001-09-22 21:47:57 -06:00
parent 915106582e
commit 1a0a77389f
9 changed files with 344 additions and 27 deletions

View File

@ -92,9 +92,9 @@ static void print_version(void)
void usage()
{
print_version();
printf("MySQL AB, by Sasha, Matt & Monty\n");
printf("MySQL AB, by Sasha\n");
printf("This software comes with ABSOLUTELY NO WARRANTY\n\n");
printf("Runs a test against the mysql server and compares output with a results file.\n\n");
printf("Command-line client for MySQL manager daemon.\n\n");
printf("Usage: %s [OPTIONS] < command_file\n", my_progname);
printf("\n\
-?, --help Display this help and exit.\n");
@ -148,7 +148,7 @@ int parse_args(int argc, char **argv)
exit(0);
case '?':
usage();
exit(1); /* Unknown option */
exit(0);
default:
usage();
exit(1);