From d5964ba20ca4c00a443c185186def44bb90831b3 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 14 Sep 2000 02:39:07 +0300 Subject: Fixes for MERGE TABLES and HEAP tables Docs/manual.texi: Updated MERGE table stuff + more extra/perror.c: Added missing error messages include/myisammrg.h: Fixes for MERGE TABLE include/queues.h: Fixes for MERGE TABLE isam/isamlog.c: Fixed hard bug myisam/mi_log.c: cleanup myisam/mi_open.c: Fixed file name format in myisam log myisam/myisamlog.c: Bug fixes myisammrg/mymrgdef.h: Fixes for MERGE TABLE myisammrg/myrg_create.c: Fixes for MERGE TABLE myisammrg/myrg_open.c: Fixes for MERGE TABLE myisammrg/myrg_queue.c: Fixes for MERGE TABLE myisammrg/myrg_rfirst.c: Fixes for MERGE TABLE myisammrg/myrg_rkey.c: Fixes for MERGE TABLE myisammrg/myrg_rlast.c: Fixes for MERGE TABLE myisammrg/myrg_rnext.c: Fixes for MERGE TABLE myisammrg/myrg_rprev.c: Fixes for MERGE TABLE myisammrg/myrg_rrnd.c: Fixes for MERGE TABLE mysql.proj: update mysys/queues.c: Fixed bug when using reverse queues sql-bench/test-insert.sh: Separated some things to get better timings sql/ha_heap.cc: Fixed heap table bug sql/ha_heap.h: Fixed heap table bug sql/ha_myisam.h: Fixed wrong max_keys sql/ha_myisammrg.cc: Fixed MERGE TABLES sql/ha_myisammrg.h: Fixed MERGE TABLES sql/handler.h: Fix for MERGE TABLES and HEAP tables sql/lex.h: Fixed MERGE TABLES sql/mysql_priv.h: Cleanup of code sql/sql_acl.cc: Fixed that privilege tables are flushed at start sql/sql_lex.h: Fixed MERGE TABLES sql/sql_parse.cc: Fixed MERGE TABLES sql/sql_select.cc: Fixes for HEAP tables sql/sql_table.cc: Cleanup sql/sql_yacc.yy: Fixed MERGE TABLES --- myisam/mi_log.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'myisam/mi_log.c') diff --git a/myisam/mi_log.c b/myisam/mi_log.c index 9f08b835d14..d223cc69bcc 100644 --- a/myisam/mi_log.c +++ b/myisam/mi_log.c @@ -69,7 +69,8 @@ int mi_log(int activate_log) /* Logging of records and commands on logfile */ /* All logs starts with command(1) dfile(2) process(4) result(2) */ -void _myisam_log(enum myisam_log_commands command, MI_INFO *info, const byte *buffert, uint length) +void _myisam_log(enum myisam_log_commands command, MI_INFO *info, + const byte *buffert, uint length) { char buff[11]; int error,old_errno; -- cgit v1.2.1