You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Postgres has some built in valgrind support (which makes valgrind know about palloc and some more things). You have to set -DUSE_VALGRIND in CFLAGS (and I guess maybe CXXFLAGS) when runinng ./configure.
This would be very useful to do this to find issues like #213 more easily.
The text was updated successfully, but these errors were encountered:
#213 was an allocation made with just malloc (wrapped by duckdb_malloc but under the hood that's just malloc)
Never the less still good to add this for sure 👍
Postgres has some built in valgrind support (which makes valgrind know about palloc and some more things). You have to set
-DUSE_VALGRIND
inCFLAGS
(and I guess maybeCXXFLAGS
) when runinng./configure
.This would be very useful to do this to find issues like #213 more easily.
The text was updated successfully, but these errors were encountered: