Martijn van Oosterhout <kleptog@svana.org> writes: > However, thinking about it, what they're doing can't possibly work. To > override malloc/free, you need to load the library *before* the C > library. Having the postmaster do it after startup is way too late.
Yeah, I was wondering about that too. At the very least you'd expect some odd behaviors with memory malloc'd before the load vs memory malloc'd after. Much more likely, though, it just fails to do anything at all. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match