Skip to content
Snippets Groups Projects
  1. Sep 20, 2010
  2. 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
  3. Nov 14, 2008
  4. Feb 01, 2007
  5. Sep 16, 2006
  6. Aug 21, 2006
    • Tom Lane's avatar
      Fix all known problems with pg_dump's handling of serial sequences · 2b2a5072
      Tom Lane authored
      by abandoning the idea that it should say SERIAL in the dump.  Instead,
      dump serial sequences and column defaults just like regular ones.
      Add a new backend command ALTER SEQUENCE OWNED BY to let pg_dump recreate
      the sequence-to-column dependency that was formerly created "behind the
      scenes" by SERIAL.  This restores SERIAL to being truly "just a macro"
      consisting of component operations that can be stated explicitly in SQL.
      Furthermore, the new command allows sequence ownership to be reassigned,
      so that old mistakes can be cleaned up.
      
      Also, downgrade the OWNED-BY dependency from INTERNAL to AUTO, since there
      is no longer any very compelling argument why the sequence couldn't be
      dropped while keeping the column.  (This forces initdb, to be sure the
      right kinds of dependencies are in there.)
      
      Along the way, add checks to prevent ALTER OWNER or SET SCHEMA on an
      owned sequence; you can now only do this indirectly by changing the
      owning table's owner or schema.  This is an oversight in previous
      releases, but probably not worth back-patching.
      2b2a5072
  7. Nov 01, 2005
  8. Nov 27, 2004
  9. Jul 12, 2004
    • Tom Lane's avatar
      Remove TABLESPACE option of CREATE SEQUENCE; sequences will now always · c14a43f6
      Tom Lane authored
      live in database or schema's default tablespace, as per today's discussion.
      Also, remove some unused keywords from the grammar (PATH, PENDANT,
      VERSION), and fix ALSO, which was added as a keyword but not added
      to the keyword classification lists, thus making it worse-than-reserved.
      c14a43f6
  10. Jun 18, 2004
  11. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  12. Nov 25, 2003
  13. Sep 22, 2003
  14. Sep 20, 2003
  15. Sep 12, 2003
  16. Aug 31, 2003
  17. Apr 22, 2003
  18. Mar 25, 2003
  19. Mar 20, 2003
    • Bruce Momjian's avatar
      Todo items: · 5f65225f
      Bruce Momjian authored
      Add ALTER SEQUENCE to modify min/max/increment/cache/cycle values
      
      Also updated create sequence docs to mention NO MINVALUE, & NO MAXVALUE.
      
      New Files:
      doc/src/sgml/ref/alter_sequence.sgml
      src/test/regress/expected/sequence.out
      src/test/regress/sql/sequence.sql
      
      
      ALTER SEQUENCE is NOT transactional.  It behaves similarly to setval().
      It matches the proposed SQL200N spec, as well as Oracle in most ways --
      Oracle lacks RESTART WITH for some strange reason.
      
      --
      Rod Taylor <rbt@rbt.ca>
      5f65225f
  20. Jan 19, 2003
    • Bruce Momjian's avatar
      This patch includes a lot of minor cleanups to the SGML documentation, · be2b660e
      Bruce Momjian authored
      including:
      
      - replacing all the appropriate usages of <citetitle>PostgreSQL
      ...</citetitle> with &cite-user;, &cite-admin;, and so on
      
      - fix an omission in the EXECUTE documentation
      
      - add some more text to the EXPLAIN documentation
      
      - improve the PL/PgSQL RETURN NEXT documentation (more work to do here)
      
      - minor markup fixes
      
      
      Neil Conway
      be2b660e
  21. Nov 10, 2002
  22. May 18, 2002
  23. Apr 23, 2002
  24. 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
  25. Mar 22, 2002
  26. Jan 20, 2002
  27. Dec 08, 2001
  28. Nov 28, 2001
  29. Nov 17, 2001
  30. Sep 13, 2001
  31. Sep 03, 2001
  32. Aug 16, 2001
    • Tom Lane's avatar
      Sequences are now based on int8, not int4, arithmetic. SERIAL pseudo-type · d4f4b971
      Tom Lane authored
      has an alias SERIAL4 and a sister SERIAL8.  SERIAL8 is just the same
      except the created column is type int8 not int4.
      initdb forced.  Note this also breaks any chance of pg_upgrade from 7.1,
      unless we hack up pg_upgrade to drop and recreate sequences.  (Which is
      not out of the question, but I don't wanna do it.)
      d4f4b971
  33. Jul 01, 2001
  34. Jun 23, 2001
  35. Dec 08, 2000
    • Tom Lane's avatar
      Remove error check that disallowed setval() on a sequence with cache · b44e46cf
      Tom Lane authored
      value greater than one.  The behavior this sought to disallow doesn't
      seem any less confusing than the other behaviors of cached sequences.
      Improve wording of some error messages, too.
      Update documentation accordingly.  Also add an explanation that
      aborted transactions do not roll back their nextval() calls; this
      seems to be a FAQ, so it ought to be mentioned here...
      b44e46cf
  36. Oct 05, 2000
  37. Jul 21, 2000
  38. May 08, 2000
Loading