• Peter Eisentraut's avatar
    Consistently catch errors from Python _New() functions · d0aa965c
    Peter Eisentraut authored
    Python Py*_New() functions can fail and return NULL in out-of-memory
    conditions.  The previous code handled that inconsistently or not at
    all.  This change organizes that better.  If we are in a function that
    is called from Python, we just check for failure and return NULL
    ourselves, which will cause any exception information to be passed up.
    If we are called from PostgreSQL, we consistently create an "out of
    memory" error.
    Reviewed-by: default avatarTom Lane <tgl@sss.pgh.pa.us>
    d0aa965c
plpy_spi.c 13.5 KB