• Neil Conway's avatar
    Attached is a patch that replaces a bunch of places where StringInfos · 0d9742f9
    Neil Conway authored
    are unnecessarily allocated on the heap rather than the stack. If the
    StringInfo doesn't outlive the stack frame in which it is created,
    there is no need to allocate it on the heap via makeStringInfo() --
    stack allocation is faster.  While it's not a big deal unless the
    code is in a critical path, I don't see a reason not to save a few
    cycles -- using stack allocation is not less readable.
    
    I also cleaned up a bit of code along the way: moved variable
    declarations into a more tightly-enclosing scope where possible,
    fixed some pointless copying of strings in dblink, etc.
    0d9742f9
varlena.c 60.8 KB