Skip to content
Snippets Groups Projects
  1. Dec 25, 2010
  2. Sep 20, 2010
  3. Mar 13, 2010
  4. Jan 02, 2010
  5. Dec 07, 2009
  6. Mar 04, 2009
  7. Jan 01, 2009
  8. Dec 28, 2008
  9. Oct 04, 2008
    • Tom Lane's avatar
      Implement SQL-standard WITH clauses, including WITH RECURSIVE. · 44d5be0e
      Tom Lane authored
      There are some unimplemented aspects: recursive queries must use UNION ALL
      (should allow UNION too), and we don't have SEARCH or CYCLE clauses.
      These might or might not get done for 8.4, but even without them it's a
      pretty useful feature.
      
      There are also a couple of small loose ends and definitional quibbles,
      which I'll send a memo about to pgsql-hackers shortly.  But let's land
      the patch now so we can get on with other development.
      
      Yoshiyuki Asaba, with lots of help from Tatsuo Ishii and Tom Lane
      44d5be0e
  10. May 16, 2008
  11. Jan 01, 2008
  12. Feb 03, 2007
  13. Jan 05, 2007
  14. Dec 21, 2006
  15. Jun 17, 2006
  16. Mar 05, 2006
  17. Jun 26, 2005
    • Tom Lane's avatar
      Code review for escape-strings patch. Sync psql and plpgsql lexers · d395aecf
      Tom Lane authored
      with main, avoid using a SQL-defined SQLSTATE for what is most definitely
      not a SQL-compatible error condition, fix documentation omissions,
      adhere to message style guidelines, don't use two GUC_REPORT variables
      when one is sufficient.  Nothing done about pg_dump issues.
      d395aecf
  18. Jan 01, 2005
  19. Oct 01, 2004
  20. Aug 29, 2004
  21. Jul 31, 2004
    • Tom Lane's avatar
      plpgsql does exceptions. · beda4814
      Tom Lane authored
      There are still some things that need refinement; in particular I fear
      that the recognized set of error condition names probably has little in
      common with what Oracle recognizes.  But it's a start.
      beda4814
  22. Jul 27, 2004
  23. Jun 01, 2004
    • Tom Lane's avatar
      Align GRANT/REVOKE behavior more closely with the SQL spec, per discussion · 4b2dafcc
      Tom Lane authored
      of bug report #1150.  Also, arrange that the object owner's irrevocable
      grant-option permissions are handled implicitly by the system rather than
      being listed in the ACL as self-granted rights (which was wrong anyway).
      I did not take the further step of showing these permissions in an
      explicit 'granted by _SYSTEM' ACL entry, as that seemed more likely to
      bollix up existing clients than to do anything really useful.  It's still
      a possible future direction, though.
      4b2dafcc
  24. May 17, 2004
  25. May 14, 2004
  26. Mar 04, 2004
  27. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 55b11325
      PostgreSQL Daemon authored
      make sure the $Id tags are converted to $PostgreSQL as well ...
      55b11325
  28. Sep 24, 2003
    • Tom Lane's avatar
      Repair some REINDEX problems per recent discussions. The relcache is · a56a016c
      Tom Lane authored
      now able to cope with assigning new relfilenode values to nailed-in-cache
      indexes, so they can be reindexed using the fully crash-safe method.  This
      leaves only shared system indexes as special cases.  Remove the 'index
      deactivation' code, since it provides no useful protection in the shared-
      index case.  Require reindexing of shared indexes to be done in standalone
      mode, but remove other restrictions on REINDEX.  -P (IgnoreSystemIndexes)
      now prevents using indexes for lookups, but does not disable index updates.
      It is therefore safe to allow from PGOPTIONS.  Upshot: reindexing system catalogs
      can be done without a standalone backend for all cases except
      shared catalogs.
      a56a016c
  29. Aug 26, 2003
  30. Aug 04, 2003
  31. Jul 31, 2003
  32. Jul 27, 2003
  33. Jul 25, 2003
  34. Jul 24, 2003
  35. Jul 23, 2003
  36. Jul 22, 2003
Loading