1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fixed performance bug in lock tables

Docs/manual.texi:
  Updated changelog
mysys/thr_lock.c:
  Fixed bad performance bug when using SELECT, INSERT and UPDATE
strings/llstr.c:
  change llstr() to output signed strings
This commit is contained in:
unknown
2000-11-20 22:25:59 +02:00
parent c21988993e
commit 166df4ee47
3 changed files with 12 additions and 4 deletions

View File

@@ -31,6 +31,6 @@
char *llstr(longlong value,char *buff)
{
longlong2str(value,buff,10);
longlong2str(value,buff,-10);
return buff;
}