1. 02 3月, 2011 6 次提交
    • H
      Change pg_last_xlog_receive_location() not to move backwards. That makes · 6eba5a7c
      Heikki Linnakangas 提交于
      it a lot more useful for determining which standby is most up-to-date,
      for example. There was long discussions on whether overwriting existing
      existing WAL makes sense to begin with, and whether we should do some more
      extensive variable renaming, but this change nevertheless seems quite
      uncontroversial.
      
      Fujii Masao, reviewed by Jeff Janes, Robert Haas, Stephen Frost.
      6eba5a7c
    • H
      Fix bugs in Serializable Snapshot Isolation. · 47ad7912
      Heikki Linnakangas 提交于
      Change the way UPDATEs are handled. Instead of maintaining a chain of
      tuple-level locks in shared memory, copy any existing locks on the old
      tuple to the new tuple at UPDATE. Any existing page-level lock needs to
      be duplicated too, as a lock on the new tuple. That was neglected
      previously.
      
      Store xmin on tuple-level predicate locks, to distinguish a lock on an old
      already-recycled tuple from a new tuple at the same physical location.
      Failure to distinguish them caused loops in the tuple-lock chains, as
      reported by YAMAMOTO Takashi. Although we don't use the chain representation
      of UPDATEs anymore, it seems like a good idea to store the xmin to avoid
      some false positives if no other reason.
      
      CheckSingleTargetForConflictsIn now correctly handles the case where a lock
      that's being held is not reflected in the local lock table. That happens
      if another backend acquires a lock on our behalf due to an UPDATE or a page
      split.
      
      PredicateLockPageCombine now retains locks for the page that is being
      removed, rather than removing them. This prevents a potentially dangerous
      false-positive inconsistency where the local lock table believes that a lock
      is held, but it is actually not.
      
      Dan Ports and Kevin Grittner
      47ad7912
    • P
      Dump the COLLATABLE attribute in CREATE TYPE · 16143d64
      Peter Eisentraut 提交于
      This was previously omitted by accident.
      16143d64
    • T
      Update discussion of EXPLAIN to reflect existence of ModifyTable nodes. · 09b49a84
      Tom Lane 提交于
      Back-patch to 9.0, since this was changed then.
      09b49a84
    • T
      Include the target table in EXPLAIN output for ModifyTable nodes. · 97c4ee94
      Tom Lane 提交于
      Per discussion, this seems important for plans involving writable CTEs,
      since there can now be more than one ModifyTable node in the plan.
      
      To retain the same formatting as for target tables of scan nodes, we
      show only one target table, which will be the parent table in case of
      an UPDATE or DELETE on an inheritance tree.  Individual child tables
      can be determined by inspecting the child plan trees if needed.
      97c4ee94
    • R
      Avoid excessive Hot Standby feedback messages. · 59d6a759
      Robert Haas 提交于
      Without this patch, when wal_receiver_status_interval=0, indicating that no
      status messages should be sent, Hot Standby feedback messages are instead sent
      extremely frequently.
      
      Fujii Masao, with documentation changes by me.
      59d6a759
  2. 01 3月, 2011 5 次提交
    • T
      Rearrange snapshot handling to make rule expansion more consistent. · c0b00760
      Tom Lane 提交于
      With this patch, portals, SQL functions, and SPI all agree that there
      should be only a CommandCounterIncrement between the queries that are
      generated from a single SQL command by rule expansion.  Fetching a whole
      new snapshot now happens only between original queries.  This is equivalent
      to the existing behavior of EXPLAIN ANALYZE, and it was judged to be the
      best choice since it eliminates one source of concurrency hazards for
      rules.  The patch should also make things marginally faster by reducing the
      number of snapshot push/pop operations.
      
      The patch removes pg_parse_and_rewrite(), which is no longer used anywhere.
      There was considerable discussion about more aggressive refactoring of the
      query-processing functions exported by postgres.c, but for the moment
      nothing more has been done there.
      
      I also took the opportunity to refactor snapmgr.c's API slightly: the
      former PushUpdatedSnapshot() has been split into two functions.
      
      Marko Tiikkaja, reviewed by Steve Singer and Tom Lane
      c0b00760
    • A
      Unbreak vpath builds broken by commit 474a4247. · 57e9bda5
      Andrew Dunstan 提交于
      57e9bda5
    • R
      Rename pg_stat_replication.apply_location to replay_location. · 92c30fd2
      Robert Haas 提交于
      For consistency with pg_last_xlog_replay_location.  Per discussion.
      92c30fd2
    • P
    • P
      PL/Python custom SPI exceptions · 474a4247
      Peter Eisentraut 提交于
      This provides a separate exception class for each error code that the
      backend defines, as well as the ability to get the SQLSTATE from the
      exception object.
      
      Jan Urbański, reviewed by Steve Singer
      474a4247
  3. 28 2月, 2011 6 次提交
    • T
      Add documentation for data-modifying statements in WITH clauses. · 0ef0b302
      Tom Lane 提交于
      Marko Tiikkaja, somewhat reworked by Tom
      0ef0b302
    • B
    • P
      PL/Python explicit subtransactions · 22690719
      Peter Eisentraut 提交于
      Adds a context manager, obtainable by plpy.subtransaction(), to run a
      group of statements in a subtransaction.
      
      Jan Urbański, reviewed by Steve Singer, additional scribbling by me
      22690719
    • P
      Remove remaining expected file for Python 2.2 · 438cdf6e
      Peter Eisentraut 提交于
      We don't have complete expected coverage for Python 2.2 anyway, so it
      doesn't seem worth keeping this one around that no one appears to be
      updating anyway.  Visual inspection of the differences ought to be
      good enough for those few who care about this obsolete Python version.
      438cdf6e
    • T
      Refactor the executor's API to support data-modifying CTEs better. · a874fe7b
      Tom Lane 提交于
      The originally committed patch for modifying CTEs didn't interact well
      with EXPLAIN, as noted by myself, and also had corner-case problems with
      triggers, as noted by Dean Rasheed.  Those problems show it is really not
      practical for ExecutorEnd to call any user-defined code; so split the
      cleanup duties out into a new function ExecutorFinish, which must be called
      between the last ExecutorRun call and ExecutorEnd.  Some Asserts have been
      added to these functions to help verify correct usage.
      
      It is no longer necessary for callers of the executor to call
      AfterTriggerBeginQuery/AfterTriggerEndQuery for themselves, as this is now
      done by ExecutorStart/ExecutorFinish respectively.  If you really need to
      suppress that and do it for yourself, pass EXEC_FLAG_SKIP_TRIGGERS to
      ExecutorStart.
      
      Also, refactor portal commit processing to allow for the possibility that
      PortalDrop will invoke user-defined code.  I think this is not actually
      necessary just yet, since the portal-execution-strategy logic forces any
      non-pure-SELECT query to be run to completion before we will consider
      committing.  But it seems like good future-proofing.
      a874fe7b
    • B
      Be less detailed about reporting shared memory failure by avoiding the · 67a5e727
      Bruce Momjian 提交于
      output of actual Postgres parameter _values_ related to shared memory,
      and suggesting that these are only possible parameters to reduce.
      67a5e727
  4. 27 2月, 2011 6 次提交
  5. 26 2月, 2011 6 次提交
  6. 25 2月, 2011 1 次提交
    • R
      Named restore point improvements. · 79ad8fc5
      Robert Haas 提交于
      Emit a log message when creating a named restore point, and improve
      documentation for pg_create_restore_point().
      
      Euler Taveira de Oliveira, 	per suggestions from Thom Brown, with some
      additional wordsmithing by me.
      79ad8fc5
  7. 24 2月, 2011 2 次提交
  8. 23 2月, 2011 6 次提交
    • B
      Update wording about information schema and name which views potentially · 2c72d704
      Bruce Momjian 提交于
      can have duplicates, per request from Tom.
      2c72d704
    • I
    • T
      Add a relkind field to RangeTblEntry to avoid some syscache lookups. · bdca82f4
      Tom Lane 提交于
      The recent additions for FDW support required checking foreign-table-ness
      in several places in the parse/plan chain.  While it's not clear whether
      that would really result in a noticeable slowdown, it seems best to avoid
      any performance risk by keeping a copy of the relation's relkind in
      RangeTblEntry.  That might have some other uses later, anyway.
      Per discussion.
      bdca82f4
    • P
      Add PL/Python functions for quoting strings · 1c51c7d5
      Peter Eisentraut 提交于
      Add functions plpy.quote_ident, plpy.quote_literal,
      plpy.quote_nullable, which wrap the equivalent SQL functions.
      
      To be able to propagate char * constness properly, make the argument
      of quote_literal_cstr() const char *.  This also makes it more
      consistent with quote_identifier().
      
      Jan Urbański, reviewed by Hitoshi Harada, some refinements by Peter
      Eisentraut
      1c51c7d5
    • R
      Fix a couple of unlogged tables goofs. · 3e6b305d
      Robert Haas 提交于
      "SELECT ... INTO UNLOGGED tabname" works, but wasn't documented; CREATE
      UNLOGGED SEQUENCE and CREATE UNLOGGED VIEW failed an assertion, instead
      of throwing a sensible error.
      
      Latter issue reported by Itagaki Takahiro; patch review by Tom Lane.
      3e6b305d
    • T
      Allow binary I/O of type "void". · 1ab9b012
      Tom Lane 提交于
      void_send is useful for the same reason that void_out doesn't throw error,
      namely that someone might do "select void_returning_func(...)"  from a
      client that prefers to operate in binary mode.  The void_recv function may
      or may not have any practical use, but we provide it for symmetry.
      
      Radosław Smogura
      1ab9b012
  9. 22 2月, 2011 2 次提交