diff options
author | unknown <monty@donna.mysql.com> | 2001-01-17 03:15:20 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-01-17 03:15:20 +0200 |
commit | 5372aa60ce6c076297815958bbbec2180d919772 (patch) | |
tree | 256b185f833ce2fac42471efe65aa7bde9b9a8da /sql/log.cc | |
parent | f0a33e62a1ed70f3b2393e6548b7a128d7dea3e1 (diff) | |
download | mariadb-git-5372aa60ce6c076297815958bbbec2180d919772.tar.gz |
Fixed for bugs that was found when getting full code coverage of BDB
Fixed bug with HEAP tables on windows
Fixed bug with HAVING on empty tables
Docs/manual.texi:
Update of UDF functions
mysql-test/mysql-test-run.sh:
Added option --user
mysql-test/r/bdb.result:
Added more test to get better coverage
mysql-test/t/bdb.test:
Added more test to get better coverage
sql/field.cc:
Fixes for key packing in BDB
sql/field.h:
Fixes for key packing in BDB
sql/ha_berkeley.cc:
Fixed for bugs that was found when getting full code coverage
sql/ha_heap.cc:
Fixed problem with HEAP tables on windows
sql/log.cc:
Safety fix
sql/sql_select.cc:
Fixed bug with HAVING on empty tables
sql/table.cc:
Fixed problem with HEAP tables on windows
Diffstat (limited to 'sql/log.cc')
-rw-r--r-- | sql/log.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log.cc b/sql/log.cc index df3168c02cf..45e4c1620b5 100644 --- a/sql/log.cc +++ b/sql/log.cc @@ -952,7 +952,7 @@ void sql_print_error(const char *format,...) #ifndef DBUG_OFF { char buff[1024]; - vsnprintf(buff,sizeof(buff)-1,format,args); + my_vsnprintf(buff,sizeof(buff)-1,format,args); DBUG_PRINT("error",("%s",buff)); } #endif |