1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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
This commit is contained in:
unknown
2001-10-10 23:44:07 +03:00
parent d6ae6b017b
commit 229e25f8cf
5 changed files with 34 additions and 9 deletions

View File

@ -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 */