Skip to content
Snippets Groups Projects
  1. Jun 11, 2003
  2. May 27, 2003
  3. Mar 10, 2003
  4. Feb 14, 2003
  5. Jan 31, 2003
  6. Nov 22, 2002
  7. Oct 20, 2002
  8. Oct 14, 2002
    • Bruce Momjian's avatar
      I have attached two patches as per: · 1f653ec3
      Bruce Momjian authored
      1) pltcl:
      Add SPI_freetuptable() calls to avoid memory leaks (Me + Neil Conway)
      Change sprintf()s to snprintf()s (Neil Conway)
      Remove header files included elsewhere (Neil Conway)
      
      2)plpython:
      Add SPI_freetuptable() calls to avoid memory leaks
      Cosemtic change to remove a compiler warning
      
      
      Notes:
      
      I have tested pltcl.c for
       a) the original leak problem reported for the repeated call of spi_exec
      in a TCL fragment
      and
       b) the subsequent report resulting from the use of spi_exec -array
      in a TCL
      fragment.
      
      The plpython.c patch is exactly the same as that applied to make
      revision 1.23,
      the plpython_schema.sql and feature.expected sections of the patch are
      also the
      same as last submited, applied and subsequently reversed out. It remains
      untested by me (other than via make check). However, this should be safe
      provided PyString_FromString() _copies_ the given string to make a
      PyObject.
      
      
      Nigel J. Andrews
      1f653ec3
  9. Sep 26, 2002
  10. Sep 05, 2002
  11. Sep 04, 2002
  12. Aug 22, 2002
  13. Jul 20, 2002
    • Bruce Momjian's avatar
      oid is needed, it is added at the end of the struct (after the null · b0f5086e
      Bruce Momjian authored
      bitmap, if present).
      
      Per Tom Lane's suggestion the information whether a tuple has an oid
      or not is carried in the tuple descriptor.  For debugging reasons
      tdhasoid is of type char, not bool.  There are predefined values for
      WITHOID, WITHOUTOID and UNDEFOID.
      
      This patch has been generated against a cvs snapshot from last week
      and I don't expect it to apply cleanly to current sources.  While I
      post it here for public review, I'm working on a new version against a
      current snapshot.  (There's been heavy activity recently; hope to
      catch up some day ...)
      
      This is a long patch;  if it is too hard to swallow, I can provide it
      in smaller pieces:
      
      Part 1:  Accessor macros
      Part 2:  tdhasoid in TupDesc
      Part 3:  Regression test
      Part 4:  Parameter withoid to heap_addheader
      Part 5:  Eliminate t_oid from HeapTupleHeader
      
      Part 2 is the most hairy part because of changes in the executor and
      even in the parser;  the other parts are straightforward.
      
      Up to part 4 the patched postmaster stays binary compatible to
      databases created with an unpatched version.  Part 5 is small (100
      lines) and finally breaks compatibility.
      
      Manfred Koizar
      b0f5086e
  14. Jun 15, 2002
  15. Mar 29, 2002
  16. Mar 06, 2002
    • Bruce Momjian's avatar
      Add new elog() levels to stored procedure languages. plperl DEBUG hack · 7d5edf2b
      Bruce Momjian authored
      still needed because only removed in 7.4.
      7d5edf2b
    • Bruce Momjian's avatar
      Change made to elog: · 92288a1c
      Bruce Momjian authored
      o  Change all current CVS messages of NOTICE to WARNING.  We were going
      to do this just before 7.3 beta but it has to be done now, as you will
      see below.
      
      o Change current INFO messages that should be controlled by
      client_min_messages to NOTICE.
      
      o Force remaining INFO messages, like from EXPLAIN, VACUUM VERBOSE, etc.
      to always go to the client.
      
      o Remove INFO from the client_min_messages options and add NOTICE.
      
      Seems we do need three non-ERROR elog levels to handle the various
      behaviors we need for these messages.
      
      Regression passed.
      92288a1c
  17. Mar 02, 2002
    • Bruce Momjian's avatar
      Commit to match discussed elog() changes. Only update is that LOG is · a033daf5
      Bruce Momjian authored
      now just below FATAL in server_min_messages.  Added more text to
      highlight ordering difference between it and client_min_messages.
      
      ---------------------------------------------------------------------------
      
      REALLYFATAL => PANIC
      STOP => PANIC
      New INFO level the prints to client by default
      New LOG level the prints to server log by default
      Cause VACUUM information to print only to the client
      NOTICE => INFO where purely information messages are sent
      DEBUG => LOG for purely server status messages
      DEBUG removed, kept as backward compatible
      DEBUG5, DEBUG4, DEBUG3, DEBUG2, DEBUG1 added
      DebugLvl removed in favor of new DEBUG[1-5] symbols
      New server_min_messages GUC parameter with values:
              DEBUG[5-1], INFO, NOTICE, ERROR, LOG, FATAL, PANIC
      New client_min_messages GUC parameter with values:
              DEBUG[5-1], LOG, INFO, NOTICE, ERROR, FATAL, PANIC
      Server startup now logged with LOG instead of DEBUG
      Remove debug_level GUC parameter
      elog() numbers now start at 10
      Add test to print error message if older elog() values are passed to elog()
      Bootstrap mode now has a -d that requires an argument, like postmaster
      a033daf5
  18. Nov 16, 2001
  19. Nov 05, 2001
  20. Oct 28, 2001
  21. Oct 25, 2001
  22. Oct 22, 2001
  23. Oct 07, 2001
    • Tom Lane's avatar
      Rearrange fmgr.c and relcache so that it's possible to keep FmgrInfo · 85801a4d
      Tom Lane authored
      lookup info in the relcache for index access method support functions.
      This makes a huge difference for dynamically loaded support functions,
      and should save a few cycles even for built-in ones.  Also tweak dfmgr.c
      so that load_external_function is called only once, not twice, when
      doing fmgr_info for a dynamically loaded function.  All per performance
      gripe from Teodor Sigaev, 5-Oct-01.
      85801a4d
  24. Oct 04, 2001
  25. Oct 01, 2001
  26. Sep 12, 2001
  27. Jun 01, 2001
    • Tom Lane's avatar
      pltcl, plperl, and plpython all suffer the same bug previously fixed · 7748e9e7
      Tom Lane authored
      in plpgsql: they fail for datatypes that have old-style I/O functions
      due to caching FmgrInfo structs with wrong fn_mcxt lifetime.
      
      Although the plpython fix seems straightforward, I can't check it here
      since I don't have Python installed --- would someone check it?
      7748e9e7
  28. May 25, 2001
  29. May 12, 2001
  30. May 09, 2001
Loading