1. 06 Dec, 2005 13 commits
  2. 05 Dec, 2005 4 commits
  3. 04 Dec, 2005 5 commits
    • Bruce Momjian's avatar
      Update: · 99552287
      Bruce Momjian authored
      < 	  Win32 API, and we have to make sure MinGW handles it.
      > 	  Win32 API, and we have to make sure MinGW handles it.  Another
      > 	  option is to wait for the MinGW project to fix it, or use the
      > 	  code from the LibGW32C project as a guide.
      99552287
    • Bruce Momjian's avatar
      Add: · 8752479d
      Bruce Momjian authored
      > 	o Add long file support for binary pg_dump output
      >
      > 	  While Win32 supports 64-bit files, the MinGW API does not,
      > 	  meaning we have to build an fseeko replacement on top of the
      > 	  Win32 API, and we have to make sure MinGW handles it.
      8752479d
    • Bruce Momjian's avatar
      Add: · bedb5fc3
      Bruce Momjian authored
      > * Add SPI_gettypmod() to return the typemod for a TupleDesc
      bedb5fc3
    • Bruce Momjian's avatar
      Add for autovacuum: · 49bbff0f
      Bruce Momjian authored
      > 	o Consider logging activity either to the logs or a system view
      49bbff0f
    • Bruce Momjian's avatar
      Add configure flag to allow libedit to be preferred over GNU readline: · 10e3d224
      Bruce Momjian authored
         --with-libedit-preferred  prefer BSD Libedit over GNU Readline
      10e3d224
  4. 03 Dec, 2005 5 commits
  5. 02 Dec, 2005 8 commits
  6. 01 Dec, 2005 5 commits
    • Bruce Momjian's avatar
      Add all heap page rows visible bitmap idea: · 113ece8f
      Bruce Momjian authored
      <   the heap.  One way to allow this is to set a bit to index tuples
      >   the heap.  One way to allow this is to set a bit on index tuples
      <   be cleared when a heap tuple is expired.
      <
      >   be cleared when a heap tuple is expired.  Another idea is to maintain
      >   a bitmap of heap pages where all rows are visible to all backends,
      >   and allow index lookups to reference that bitmap to avoid heap
      >   lookups, perhaps the same bitmap we might add someday to determine
      >   which heap pages need vacuuming.
      113ece8f
    • Bruce Momjian's avatar
      Add MERGE TODO.detail: · 915fb7f6
      Bruce Momjian authored
      >   [merge]
      378a380
      >   [merge]
      915fb7f6
    • Bruce Momjian's avatar
      Add merge TODO.detail item. · f28bdd95
      Bruce Momjian authored
      f28bdd95
    • Bruce Momjian's avatar
      Split out MERGE and REPLACE/UPSERT items. · 24e1a045
      Bruce Momjian authored
      < * Add MERGE command that does UPDATE/DELETE, or on failure, INSERT (rules,
      <   triggers?)
      > * Add SQL-standard MERGE command, typically used to merge two tables
      >
      >   This is similar to UPDATE, then for unmatched rows, INSERT.
      >   Whether concurrent access allows modifications which could cause
      >   row loss is implementation independent.
      >
      > * Add REPLACE or UPSERT command that does UPDATE, or on failure, INSERT
      24e1a045
    • Bruce Momjian's avatar
      Add comment to pg_atoi. · 8c8c0108
      Bruce Momjian authored
      8c8c0108