1. 08 Nov, 2007 5 commits
  2. 07 Nov, 2007 8 commits
  3. 06 Nov, 2007 2 commits
    • Michael Meskes's avatar
      Fixed two parser bugs. · e9d7bd26
      Michael Meskes authored
      e9d7bd26
    • Tom Lane's avatar
      Some code review for xml.c: · 5e512971
      Tom Lane authored
      Add some more xml_init() calls that might not be necessary, but seem like a
      good idea to avoid possible problems like we saw in xmlelement().
      Fix unsafe assumption that you can keep using the tupledesc of a relcache
      entry you don't have open.
      Add missing error checks for SearchSysCache failure.
      Get rid of handwritten array traversal in xpath() and O(N^2), broken-for-nulls
      array access code in map_sql_value_to_xml_value(), in favor of using
      deconstruct_array.
      Manually adjust a lot of line breaks in places where the code is otherwise
      gonna look pretty awful after pg_indent hacks it up (original author seems to
      have liked to lay out code for a 200-column window).
      5e512971
  4. 05 Nov, 2007 14 commits
  5. 04 Nov, 2007 10 commits
  6. 02 Nov, 2007 1 commit
    • Tom Lane's avatar
      Ensure that EquivalenceClasses generated from ORDER BY keys contain proper · 97ddfc96
      Tom Lane authored
      RelabelType nodes when the sort key is binary-compatible with the sort
      operator rather than having exactly its input type.  We did this correctly
      for index columns but not sort keys, leading to failure to notice that
      a varchar index matches an ORDER BY request.  This requires a bit more work
      in make_sort_from_pathkeys, but not anyplace else that I can find.
      Per bug report and subsequent discussion.
      97ddfc96