diff options
author | gbichot@quadita2.mysql.com <> | 2005-05-05 14:20:53 +0200 |
---|---|---|
committer | gbichot@quadita2.mysql.com <> | 2005-05-05 14:20:53 +0200 |
commit | b72ae4fe57b7237755ccc56c1a7d9dded4eaeb21 (patch) | |
tree | 1203ddb23b4b230f311e090d94091e8940da887c /mysql-test/valgrind.supp | |
parent | c78b2d25ac823166d7efb03a3a9a1a0ac4eababf (diff) | |
download | mariadb-git-b72ae4fe57b7237755ccc56c1a7d9dded4eaeb21.tar.gz |
Approximative fixes for BUG#2610,2611,9100 i.e. WL#2146 binlogging/replication of routines (stored procs and functions).
Approximative, because it's using our binlogging way (what we call "query"-level) and this is not as good as record-level binlog (5.1) would be. It imposes several
limitations to routines, and has caveats (which I'll document, and for which the server will try to issue errors but that is not always possible).
Reason I don't propagate caller info to the binlog as planned is that on master and slave
users may be different; even with that some caveats would remain.
Diffstat (limited to 'mysql-test/valgrind.supp')
-rw-r--r-- | mysql-test/valgrind.supp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/mysql-test/valgrind.supp b/mysql-test/valgrind.supp index d8a13ca9dfd..26f3477140b 100644 --- a/mysql-test/valgrind.supp +++ b/mysql-test/valgrind.supp @@ -25,6 +25,24 @@ } { + pthread allocate_dtv memory loss second + Memcheck:Leak + fun:calloc + fun:allocate_dtv + fun:_dl_allocate_tls + fun:pthread_create* +} + +{ + pthread allocate_dtv memory loss second + Memcheck:Leak + fun:calloc + fun:allocate_dtv + fun:_dl_allocate_tls + fun:pthread_create* +} + +{ pthread memalign memory loss Memcheck:Leak fun:memalign @@ -34,6 +52,28 @@ } { + pthread strstr uninit + Memcheck:Cond + fun:strstr + obj:/lib/tls/libpthread.so.* + obj:/lib/tls/libpthread.so.* + fun:call_init + fun:_dl_init + obj:/lib/ld-*.so +} + +{ + pthread strstr uninit + Memcheck:Cond + fun:strstr + obj:/lib/tls/libpthread.so.* + obj:/lib/tls/libpthread.so.* + fun:call_init + fun:_dl_init + obj:/lib/ld-*.so +} + +{ pthread errno Memcheck:Leak fun:calloc |