Skip to content
Snippets Groups Projects
  1. Aug 07, 2011
    • Peter Eisentraut's avatar
      Fix a whitespace issue with the man pages · 6ef24487
      Peter Eisentraut authored
      There is what may actually be a mistake in our markup.  The problem is
      in a situation like
      
      <para>
       <command>FOO</command> is ...
      
      there is strictly speaking a line break before "FOO".  In the HTML
      output, this does not appear to be a problem, but in the man page
      output, this shows up, so you get double blank lines at odd places.
      
      So far, we have attempted to work around this with an XSL hack, but
      that causes other problems, such as creating run-ins in places like
      
      <acronym>SQL</acronym> <command>COPY</command>
      
      So fix the problem properly by removing the extra whitespace.  I only
      fixed the problems that affect the man page output, not all the
      places.
      6ef24487
  2. May 19, 2011
  3. Oct 08, 2010
  4. Sep 20, 2010
  5. May 11, 2010
  6. Apr 03, 2010
    • Peter Eisentraut's avatar
      Remove unnecessary xref endterm attributes and title ids · 6dcce398
      Peter Eisentraut authored
      The endterm attribute is mainly useful when the toolchain does not support
      automatic link target text generation for a particular situation.  In  the
      past, this was required by the man page tools for all reference page links,
      but that is no longer the case, and it now actually gets in the way of
      proper automatic link text generation.  The only remaining use cases are
      currently xrefs to refsects.
      6dcce398
  7. Feb 07, 2010
    • Tom Lane's avatar
      Create a "relation mapping" infrastructure to support changing the relfilenodes · b9b8831a
      Tom Lane authored
      of shared or nailed system catalogs.  This has two key benefits:
      
      * The new CLUSTER-based VACUUM FULL can be applied safely to all catalogs.
      
      * We no longer have to use an unsafe reindex-in-place approach for reindexing
        shared catalogs.
      
      CLUSTER on nailed catalogs now works too, although I left it disabled on
      shared catalogs because the resulting pg_index.indisclustered update would
      only be visible in one database.
      
      Since reindexing shared system catalogs is now fully transactional and
      crash-safe, the former special cases in REINDEX behavior have been removed;
      shared catalogs are treated the same as non-shared.
      
      This commit does not do anything about the recently-discussed problem of
      deadlocks between VACUUM FULL/CLUSTER on a system catalog and other
      concurrent queries; will address that in a separate patch.  As a stopgap,
      parallel_schedule has been tweaked to run vacuum.sql by itself, to avoid
      such failures during the regression tests.
      b9b8831a
  8. Sep 19, 2009
  9. Nov 24, 2008
  10. Nov 14, 2008
  11. Nov 07, 2007
  12. May 11, 2007
  13. Apr 08, 2007
  14. Feb 01, 2007
  15. Nov 04, 2006
  16. Oct 31, 2006
  17. Sep 16, 2006
  18. Jan 04, 2005
  19. Nov 15, 2004
  20. Aug 21, 2004
  21. Mar 23, 2004
  22. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  23. Nov 02, 2003
  24. Sep 12, 2003
  25. Sep 09, 2003
  26. Aug 31, 2003
  27. Apr 15, 2003
  28. Mar 25, 2003
  29. Feb 19, 2003
    • Bruce Momjian's avatar
      This patch makes the following changes to the documentation: · cde8bbc4
      Bruce Momjian authored
      - more work from the SGML police
      
      - some grammar improvements: rewriting a paragraph or two, replacing
      contractions where (IMHO) appropriate
      
      - fix missing utility commands in lock mode docs
      
      - improve CLUSTER, REINDEX, SET SESSION AUTHORIZATION ref pages
      
      Neil Conway
      cde8bbc4
  30. Dec 30, 2002
  31. Nov 18, 2002
  32. Nov 15, 2002
    • Bruce Momjian's avatar
      New version attached. The following is implemented: · 8bc717cb
      Bruce Momjian authored
      - CLUSTER ALL clusters all the tables that have some index with
        indisclustered set and the calling user owns.
      - CLUSTER tablename clusters the named table, using the index with
        indisclustered set.  If no index has the bit set, throws elog(ERROR).
      - The multi-relation version (CLUSTER ALL) uses a multitransaction
        approach, similar to what VACUUM does.
      
      Alvaro Herrera
      8bc717cb
  33. Sep 21, 2002
  34. Aug 11, 2002
  35. Aug 10, 2002
  36. Apr 23, 2002
  37. Apr 21, 2002
    • Thomas G. Lockhart's avatar
      Augment the date/time examples in the User's Guide to reflect the newer · c05f29e8
      Thomas G. Lockhart authored
       capabilities of specifying time zones as intervals per SQL9x.
      Put refentrytitle contents on the same line as the tag.
       Otherwise, leading whitespace is propagated into the product, which
       (at least) messes up the ToC layout.
      Remove (some) docinfo tags containing dates. Best to omit if the dates
       are not accurate; maybe use CVS dates instead or leave them out.
      c05f29e8
Loading