diff options
author | unknown <monty@donna.mysql.com> | 2000-10-24 02:39:54 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-10-24 02:39:54 +0300 |
commit | 101a583f0ec7c71786817bf13705737eeedfa366 (patch) | |
tree | 73129936be11d0b1bee843a961a70f81aeae1a6b /include | |
parent | a468c8f9a987ed919eb9883b8124b7ed58f3c943 (diff) | |
download | mariadb-git-101a583f0ec7c71786817bf13705737eeedfa366.tar.gz |
Update of interface for BDB tables.
Fixed bug in SHOW CREATE TABLE
Build-tools/mysql-copyright:
Shorter error message
Docs/manual.texi:
Update of myisamchk stuff
acinclude.m4:
Force use of Berkeley DB 3.2.3 or newer
include/m_string.h:
Changed type of arguments to bmove()
myisam/mi_check.c:
Nicer error message
mysql.proj:
Updated
sql/ha_berkeley.cc:
Use new key compare interface
sql/sql_select.cc:
Call join_free() early to free all cursors
sql/sql_show.cc:
Fixed CREATE TABLE when used with auto_increment columns
strings/bmove.c:
Changed type of arguments to bmove()
Diffstat (limited to 'include')
-rw-r--r-- | include/m_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_string.h b/include/m_string.h index 6b7719d44f5..ce5197f17af 100644 --- a/include/m_string.h +++ b/include/m_string.h @@ -140,7 +140,7 @@ extern void bmove512(gptr dst,const gptr src,uint len); #endif #if !defined(HAVE_BMOVE) && !defined(bmove) -extern void bmove(gptr dst,const char *src,uint len); +extern void bmove(char *dst, const char *src,uint len); #endif extern void bmove_upp(char *dst,const char *src,uint len); |