1. 16 Jan, 2007 3 commits
  2. 15 Jan, 2007 2 commits
  3. 14 Jan, 2007 4 commits
  4. 13 Jan, 2007 1 commit
  5. 12 Jan, 2007 11 commits
  6. 11 Jan, 2007 14 commits
  7. 10 Jan, 2007 5 commits
    • Peter Eisentraut's avatar
      Use libxml's xmlwriter API for producing XML elements, instead of doing · c0e977c1
      Peter Eisentraut authored
      our own printing dance.  This does a better job of quoting and escaping the
      values.
      c0e977c1
    • Bruce Momjian's avatar
      f21d5b61
    • Tom Lane's avatar
      Make sure BYTE_ORDER gets defined in 64-bit builds on Solaris, · c4e7e675
      Tom Lane authored
      per Stefan Kaltenbrunner.
      c4e7e675
    • Tom Lane's avatar
      Change the planner-to-executor API so that the planner tells the executor · a191a169
      Tom Lane authored
      which comparison operators to use for plan nodes involving tuple comparison
      (Agg, Group, Unique, SetOp).  Formerly the executor looked up the default
      equality operator for the datatype, which was really pretty shaky, since it's
      possible that the data being fed to the node is sorted according to some
      nondefault operator class that could have an incompatible idea of equality.
      The planner knows what it has sorted by and therefore can provide the right
      equality operator to use.  Also, this change moves a couple of catalog lookups
      out of the executor and into the planner, which should help startup time for
      pre-planned queries by some small amount.  Modify the planner to remove some
      other cavalier assumptions about always being able to use the default
      operators.  Also add "nulls first/last" info to the Plan node for a mergejoin
      --- neither the executor nor the planner can cope yet, but at least the API is
      in place.
      a191a169
    • Neil Conway's avatar
      Attached patch fixes two problems: · 5f6d7353
      Neil Conway authored
      1) gendef works from inside visual studio - use a tempfile instead of
      redirection, because for some reason you can't redirect dumpbin from
      inside (patch from Joachim Wieland)
      2) gendef must process only *.obj, or you get weird errors in some build
      scenarios when it tries to process a logfile
      
      Magnus Hagander
      5f6d7353