1. 19 Feb, 2007 1 commit
  2. 18 Feb, 2007 5 commits
    • Tom Lane's avatar
      Fix portal management code to support non-default command completion tags for · f1f2b271
      Tom Lane authored
      portals using PORTAL_UTIL_SELECT strategy.  This is currently significant only
      for FETCH queries, which are supposed to include a count in the tag.  Seems
      it's been broken since 7.4, but nobody noticed before Knut Lehre.
      f1f2b271
    • Bruce Momjian's avatar
    • Bruce Momjian's avatar
      Update wording: · 9f6ed2f4
      Bruce Momjian authored
      <   Currently, ALTER USER and ALTER DATABASE support per-user and
      >   Currently ALTER USER and ALTER DATABASE support per-user and
      < 	  Currently, subtracting one date from another that crosses a
      > 	  Currently subtracting one date from another that crosses a
      <   Currently, SQL-language functions can only refer to parameters via $1, etc
      >   Currently SQL-language functions can only refer to dollar parameters,
      >   e.g. $1
      <   Currently, queries prepared via the libpq API are planned on first
      >   Currently queries prepared via the libpq API are planned on first
      < 	  Currently, SET <tab> causes a database lookup to check all
      > 	  Currently SET <tab> causes a database lookup to check all
      < 	  Currently, all statement results are transferred to the libpq
      > 	  Currently all statement results are transferred to the libpq
      9f6ed2f4
    • Bruce Momjian's avatar
      Add: · 0e461f27
      Bruce Momjian authored
      * Allow SQL-language functions to reference parameters by parameter name
      
        Currently SQL-language functions can only refer to parameters via $1, etc
      0e461f27
    • Bruce Momjian's avatar
      Update "Conflicting lock modes" to show as conflict, add · 9b9cd9c2
      Bruce Momjian authored
      current/requested headings, add link to table from text.
      9b9cd9c2
  3. 17 Feb, 2007 7 commits
  4. 16 Feb, 2007 20 commits
  5. 15 Feb, 2007 3 commits
    • Alvaro Herrera's avatar
      Restructure autovacuum in two processes: a dummy process, which runs · 18206509
      Alvaro Herrera authored
      continuously, and requests vacuum runs of "autovacuum workers" to postmaster.
      The workers do the actual vacuum work.  This allows for future improvements,
      like allowing multiple autovacuum jobs running in parallel.
      
      For now, the code keeps the original behavior of having a single autovac
      process at any time by sleeping until the previous worker has finished.
      18206509
    • Tom Lane's avatar
      Add ORDER BY to a query on information_schema.views, to avoid possible · eecbb332
      Tom Lane authored
      platform-specific result ordering.  Per buildfarm results.
      eecbb332
    • Tom Lane's avatar
      Repair oversight in 8.2 change that improved the handling of "pseudoconstant" · bfe553fb
      Tom Lane authored
      WHERE clauses.  createplan.c is now willing to stick a gating Result node
      almost anywhere in the plan tree, and in particular one can wind up directly
      underneath a MergeJoin node.  This means it had better be willing to handle
      Mark/Restore.  Fortunately, that's trivial in such cases, since we can just
      pass off the call to the input node (which the planner has previously ensured
      can handle Mark/Restore).  Per report from Phil Frost.
      bfe553fb
  6. 14 Feb, 2007 4 commits