summaryrefslogtreecommitdiff
path: root/mysys/my_init.c
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2001-12-05 23:15:05 +0200
committerunknown <monty@hundin.mysql.fi>2001-12-05 23:15:05 +0200
commite8d81970be33a5a6594bfb7a7ea0c0de02647227 (patch)
tree07de775d0327927eb8a4c4d3cc563f212497be56 /mysys/my_init.c
parentace649189d566532a46ff110db15ccde117ce4af (diff)
downloadmariadb-git-e8d81970be33a5a6594bfb7a7ea0c0de02647227.tar.gz
Fixed bug in LEFT JOIN
Docs/manual.texi: ChangeLog myisam/mi_locking.c: Remove wrong optimistic locking. (Doesn't affect MySQL) mysys/my_init.c: Release character sets at end scripts/mysqlhotcopy.sh: RAID tables are now copied
Diffstat (limited to 'mysys/my_init.c')
-rw-r--r--mysys/my_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_init.c b/mysys/my_init.c
index c3b9cecf86e..3bc87fd179d 100644
--- a/mysys/my_init.c
+++ b/mysys/my_init.c
@@ -126,6 +126,7 @@ void my_end(int infoflag)
DBUG_PRINT("error",("%s",errbuff[0]));
}
}
+ free_charsets();
if (infoflag & MY_GIVE_INFO || info_file != stderr)
{
#ifdef HAVE_GETRUSAGE
@@ -150,7 +151,6 @@ Voluntary context switches %ld, Involuntary context switches %ld\n",
#if defined(MSDOS) && !defined(__WIN__)
fprintf(info_file,"\nRun time: %.1f\n",(double) clock()/CLOCKS_PER_SEC);
#endif
- free_charsets();
#if defined(SAFEMALLOC)
TERMINATE(stderr); /* Give statistic on screen */
#elif defined(__WIN__) && defined(_MSC_VER)