Skip to content
Snippets Groups Projects
  1. Nov 08, 2011
    • Robert Haas's avatar
      Remove hstore's text => text operator. · b60653bc
      Robert Haas authored
      Since PostgreSQL 9.0, we've emitted a warning message when an operator
      named => is created, because the SQL standard now reserves that token
      for another use.  But we've also shipped such an operator with hstore.
      Use of the function hstore(text, text) has been recommended in
      preference to =>(text, text).  Per discussion, it's now time to take
      the next step and stop shipping the operator.  This will allow us to
      prohibit the use of => as an operator name in a future release if and
      when we wish to support the SQL standard use of this token.
      
      The release notes should mention this incompatibility.
      
      Patch by me, reviewed by David Wheeler, Dimitri Fontaine and Tom Lane.
      b60653bc
  2. May 08, 2011
  3. May 04, 2011
  4. Feb 14, 2011
  5. Sep 20, 2010
  6. Aug 17, 2010
  7. Jul 29, 2010
    • Peter Eisentraut's avatar
      Fix indentation of verbatim block elements · 66424a28
      Peter Eisentraut authored
      Block elements with verbatim formatting (literallayout, programlisting,
      screen, synopsis) should be aligned at column 0 independent of the surrounding
      SGML, because whitespace is significant, and indenting them creates erratic
      whitespace in the output.  The CSS stylesheets already take care of indenting
      the output.
      
      Assorted markup improvements to go along with it.
      66424a28
  8. Jul 02, 2010
  9. Jun 22, 2010
    • Robert Haas's avatar
      Deprecate the use of => as an operator name. · f9742123
      Robert Haas authored
      In HEAD, emit a warning when an operator named => is defined.
      In both HEAD and the backbranches (except in 8.2, where contrib
      modules do not have documentation), document that hstore's text =>
      text operator may be removed in a future release, and encourage the
      use of the hstore(text, text) function instead.  This function only
      exists in HEAD (previously, it was called tconvert), so backpatch
      it back to 8.2, when hstore was added.  Per discussion.
      f9742123
  10. Jun 18, 2010
  11. Jun 15, 2010
  12. Feb 27, 2010
  13. Feb 17, 2010
  14. Dec 16, 2009
  15. Nov 30, 2009
    • Bruce Momjian's avatar
      hstore docs · 29fd97d9
      Bruce Momjian authored
      Update hstore docs, mostly word-smithing.
      
      David E. Wheeler
      29fd97d9
  16. Sep 30, 2009
    • Tom Lane's avatar
      Assorted improvements in contrib/hstore. · 172eacba
      Tom Lane authored
      Remove the 64K limit on the lengths of keys and values within an hstore.
      (This changes the on-disk format, but the old format can still be read.)
      Add support for btree/hash opclasses for hstore --- this is not so much
      for actual indexing purposes as to allow use of GROUP BY, DISTINCT, etc.
      Add various other new functions and operators.
      
      Andrew Gierth
      172eacba
  17. Mar 15, 2009
  18. Dec 06, 2007
  19. Nov 11, 2007
Loading