1. 14 Jun, 2005 21 commits
  2. 13 Jun, 2005 4 commits
    • Tom Lane's avatar
      Change the planner to allow indexscan qualification clauses to use · c186c931
      Tom Lane authored
      nonconsecutive columns of a multicolumn index, as per discussion around
      mid-May (pghackers thread "Best way to scan on-disk bitmaps").  This
      turns out to require only minimal changes in btree, and so far as I can
      see none at all in GiST.  btcostestimate did need some work, but its
      original assumption that index selectivity == heap selectivity was
      quite bogus even before this.
      c186c931
    • Neil Conway's avatar
      Per discussion on -hackers, this patch changes psql's "expanded" output · 07781160
      Neil Conway authored
      mode to only affect the presentation of normal query results, not the
      output of psql slash commands. Documentation updated. I also made
      some unrelated minor psql cleanup. Per suggestion from Stuart Cooper.
      07781160
    • Neil Conway's avatar
      SGML cleanup: consistently use "endterm" in <xref>s that link to the · 8c05ca77
      Neil Conway authored
      reference page for SQL commands, so that the link text is italicized.
      8c05ca77
    • Tom Lane's avatar
      Adjust lo_open() so that specifying INV_READ without INV_WRITE creates · a2fb7b8a
      Tom Lane authored
      a descriptor that uses the current transaction snapshot, rather than
      SnapshotNow as it did before (and still does if INV_WRITE is set).
      This means pg_dump will now dump a consistent snapshot of large object
      contents, as it never could do before.  Also, add a lo_create() function
      that is similar to lo_creat() but allows the desired OID of the large
      object to be specified.  This will simplify pg_restore considerably
      (but I'll fix that in a separate commit).
      a2fb7b8a
  3. 12 Jun, 2005 3 commits
  4. 10 Jun, 2005 12 commits