diff options
author | unknown <monty@hundin.mysql.fi> | 2001-10-10 23:44:07 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-10-10 23:44:07 +0300 |
commit | 229e25f8cfc2601febe57e6e99ccdf9667f1add0 (patch) | |
tree | ada7ef6d169cbfbcd4603c237cfa2bf1b229ed50 /client | |
parent | d6ae6b017bb73b55bc6b22575031a3a8e7b75d41 (diff) | |
download | mariadb-git-229e25f8cfc2601febe57e6e99ccdf9667f1add0.tar.gz |
Always build thread safe client libraries in the distributed build
Add mysqlmanager to binary distribution.
Build-tools/Do-compile:
Always build thread safe client libraries.
Docs/manual.texi:
More info about SET
client/mysqldump.c:
Cleanup
scripts/make_binary_distribution.sh:
Add mysqlmanager
support-files/mysql.spec.sh:
Added mysqlmanager to RPM
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqldump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c index 894286f8896..64e7ae0fd82 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -1150,9 +1150,9 @@ static void dumpTable(uint numFields, char *table) } if (opt_lock) fputs("UNLOCK TABLES;\n", md_result_file); - mysql_free_result(res); if (opt_autocommit) fprintf(md_result_file, "commit;\n"); + mysql_free_result(res); } } /* dumpTable */ |