1. 07 4月, 2012 7 次提交
    • T
      Update URL for pgtclng project. · d75829a6
      Tom Lane 提交于
      Thom Brown
      d75829a6
    • T
      Fix misleading output from gin_desc(). · 0ab4db52
      Tom Lane 提交于
      XLOG_GIN_UPDATE_META_PAGE and XLOG_GIN_DELETE_LISTPAGE records were printed
      with a list link field labeled as "blkno", which was confusing, especially
      when the link was empty (InvalidBlockNumber).  Print the metapage block
      number instead, since that's what's actually being updated.  We could
      include the link values too as a separate field, but not clear it's worth
      the trouble.
      
      Back-patch to 8.4 where the dubious code was added.
      0ab4db52
    • T
      Fix broken comparetup_datum code. · 17b985b1
      Tom Lane 提交于
      Commit 337b6f5e contained the entirely
      fanciful assumption that it had made comparetup_datum unreachable.
      Reported and patched by Takashi Yamamoto.
      
      Fix up some not terribly accurate/useful comments from that commit, too.
      17b985b1
    • P
      Fix some typos in the documentation · 6c41948c
      Peter Eisentraut 提交于
      Thom Brown
      6c41948c
    • P
      25028a27
    • T
      Dept of second thoughts: improve the API for AnalyzeForeignTable. · cea49fe8
      Tom Lane 提交于
      If we make the initially-called function return the table physical-size
      estimate, acquire_inherited_sample_rows will be able to use that to
      allocate numbers of samples among child tables, when the day comes that
      we want to support foreign tables in inheritance trees.
      cea49fe8
    • T
      Allow statistics to be collected for foreign tables. · 263d9de6
      Tom Lane 提交于
      ANALYZE now accepts foreign tables and allows the table's FDW to control
      how the sample rows are collected.  (But only manual ANALYZEs will touch
      foreign tables, for the moment, since among other things it's not very
      clear how to handle remote permissions checks in an auto-analyze.)
      
      contrib/file_fdw is extended to support this.
      
      Etsuro Fujita, reviewed by Shigeru Hanada, some further tweaking by me.
      263d9de6
  2. 06 4月, 2012 7 次提交
  3. 05 4月, 2012 7 次提交
    • R
      Correctly explain units used by function-timing stats functions. · 97e26dc6
      Robert Haas 提交于
      The views are in milliseconds, but the raw functions return
      microseconds.
      97e26dc6
    • R
      Expose track_iotiming data via the statistics collector. · 64482890
      Robert Haas 提交于
      Ants Aasma's original patch to add timing information for buffer I/O
      requests exposed this data at the relation level, which was judged too
      costly.  I've here exposed it at the database level instead.
      64482890
    • T
      Fix plpgsql named-cursor-parameter feature for variable name conflicts. · 05dbd4a7
      Tom Lane 提交于
      The parser got confused if a cursor parameter had the same name as
      a plpgsql variable.  Reported and diagnosed by Yeb Havinga, though
      this isn't exactly his proposed fix.
      
      Also, some mostly-but-not-entirely-cosmetic adjustments to the original
      named-cursor-parameter patch, for code readability and better error
      diagnostics.
      05dbd4a7
    • T
      Improve efficiency of dblink by using libpq's new row processor API. · 6f922ef8
      Tom Lane 提交于
      This patch provides a test case for libpq's row processor API.
      contrib/dblink can deal with very large result sets by dumping them into
      a tuplestore (which can spill to disk) --- but until now, the intermediate
      storage of the query result in a PGresult meant memory bloat for any large
      result.  Now we use a row processor to convert the data to tuple form and
      dump it directly into the tuplestore.
      
      A limitation is that this only works for plain dblink() queries, not
      dblink_send_query() followed by dblink_get_result().  In the latter
      case we don't know the desired tuple rowtype soon enough.  While hack
      solutions to that are possible, a different user-level API would
      probably be a better answer.
      
      Kyotaro Horiguchi, reviewed by Marko Kreen and Tom Lane
      6f922ef8
    • T
      Add a "row processor" API to libpq for better handling of large results. · 92785dac
      Tom Lane 提交于
      Traditionally libpq has collected an entire query result before passing
      it back to the application.  That provides a simple and transactional API,
      but it's pretty inefficient for large result sets.  This patch allows the
      application to process each row on-the-fly instead of accumulating the
      rows into the PGresult.  Error recovery becomes a bit more complex, but
      often that tradeoff is well worth making.
      
      Kyotaro Horiguchi, reviewed by Marko Kreen and Tom Lane
      92785dac
    • T
      Remove useless PGRES_COPY_BOTH "support" in psql. · cb917e15
      Tom Lane 提交于
      There is no existing or foreseeable case in which psql should see a
      PGRES_COPY_BOTH PQresultStatus; and if such a case ever emerges, it's a
      pretty good bet that these code fragments wouldn't do the right thing
      anyway.  Remove them, and let the existing default cases do the appropriate
      thing, namely emit an "unexpected PQresultStatus" bleat.
      
      Noted while working on libpq row processor patch, for which I was
      considering adding a PGRES_SUSPENDED status code --- the same default-case
      treatment would be appropriate for that.
      cb917e15
    • T
      Fix syslogger to not lose log coherency under high load. · c17e863b
      Tom Lane 提交于
      The original coding of the syslogger had an arbitrary limit of 20 large
      messages concurrently in progress, after which it would just punt and dump
      message fragments to the output file separately.  Our ambitions are a bit
      higher than that now, so allow the data structure to expand as necessary.
      
      Reported and patched by Andrew Dunstan; some editing by Tom
      c17e863b
  4. 04 4月, 2012 1 次提交
    • T
      Fix a couple of contrib/dblink bugs. · d843ed21
      Tom Lane 提交于
      dblink_exec leaked temporary database connections if any error occurred
      after connection setup, for example
      	SELECT dblink_exec('...connect string...', 'select 1/0');
      Add a PG_TRY block to ensure PQfinish gets done when it is needed.
      (dblink_record_internal is on the hairy edge of needing similar treatment,
      but seems not to be actively broken at the moment.)
      
      Also, in 9.0 and up, only one of the three functions using tuplestore
      return mode was properly checking that the query context would allow
      a tuplestore result.
      
      Noted while reviewing dblink patch.  Back-patch to all supported branches.
      d843ed21
  5. 03 4月, 2012 2 次提交
  6. 02 4月, 2012 2 次提交
  7. 01 4月, 2012 3 次提交
    • T
      Fix O(N^2) behavior in pg_dump when many objects are in dependency loops. · d5881c03
      Tom Lane 提交于
      Combining the loop workspace with the record of already-processed objects
      might have been a cute trick, but it behaves horridly if there are many
      dependency loops to repair: the time spent in the first step of findLoop()
      grows as O(N^2).  Instead use a separate flag array indexed by dump ID,
      which we can check in constant time.  The length of the workspace array
      is now never more than the actual length of a dependency chain, which
      should be reasonably short in all cases of practical interest.  The code
      is noticeably easier to understand this way, too.
      
      Per gripe from Mike Roest.  Since this is a longstanding performance bug,
      backpatch to all supported versions.
      d5881c03
    • T
      Fix O(N^2) behavior in pg_dump for large numbers of owned sequences. · 0d8117ab
      Tom Lane 提交于
      The loop that matched owned sequences to their owning tables required time
      proportional to number of owned sequences times number of tables; although
      this work was only expended in selective-dump situations, which is probably
      why the issue wasn't recognized long since.  Refactor slightly so that we
      can perform this work after the index array for findTableByOid has been
      set up, reducing the time to O(M log N).
      
      Per gripe from Mike Roest.  Since this is a longstanding performance bug,
      backpatch to all supported versions.
      0d8117ab
    • T
      Rename frontend keyword arrays to avoid conflict with backend. · c252a17d
      Tom Lane 提交于
      ecpg and pg_dump each contain keyword arrays with structure similar
      to the backend's keyword array.  Up to now, we actually named those
      arrays the same as the backend's and relied on parser/keywords.h
      to declare them.  This seems a tad too cute, though, and it breaks
      now that we need to PGDLLIMPORT-decorate the backend symbols.
      Rename to avoid the problem.  Per buildfarm.
      
      (It strikes me that maybe we should get rid of the separate keywords.c
      files altogether, and just define these arrays in the modules that use
      them, but that's a rather more invasive change.)
      c252a17d
  8. 31 3月, 2012 5 次提交
  9. 30 3月, 2012 5 次提交
    • R
      pg_test_timing: Lame hack to work around compiler warning. · 3f427c13
      Robert Haas 提交于
      Fujii Masao, plus a comment by me.  While I'm at it, correctly tabify
      this chunk of code.
      3f427c13
    • T
      Fix dblink's failure to report correct connection name in error messages. · b75fbe91
      Tom Lane 提交于
      The DBLINK_GET_CONN and DBLINK_GET_NAMED_CONN macros did not set the
      surrounding function's conname variable, causing errors to be incorrectly
      reported as having occurred on the "unnamed" connection in some cases.
      This bug was actually visible in two cases in the regression tests,
      but apparently whoever added those cases wasn't paying attention.
      
      Noted by Kyotaro Horiguchi, though this is different from his proposed
      patch.
      
      Back-patch to 8.4; 8.3 does not have the same type of error reporting
      so the patch is not relevant.
      b75fbe91
    • T
      Improve contrib/pg_stat_statements' handling of PREPARE/EXECUTE statements. · 566a1d43
      Tom Lane 提交于
      It's actually more useful for the module to ignore these.  Ignoring
      EXECUTE (and not incrementing the nesting level) allows the executor
      hooks to charge the time to the underlying prepared query, which
      shows up as a stats entry with the original PREPARE as query string
      (possibly modified by suppression of constants, which might not be
      terribly useful here but it's not worth avoiding).  This is much more
      useful than cluttering the stats table with a distinct entry for each
      textually distinct EXECUTE.
      
      Experimentation with this idea shows that it's also preferable to ignore
      PREPARE.  If we don't, we get two stats table entries, one with the query
      string hash and one with the jumble-derived hash, but with the same visible
      query string (modulo those constants).  This is confusing and not very
      helpful, since the first entry will only receive costs associated with
      initial planning of the query, which is not something counted at all
      normally by pg_stat_statements.  (And if we do start tracking planning
      costs, we'd want them blamed on the other hash table entry anyway.)
      566a1d43
    • T
      Improve handling of utility statements containing plannable statements. · e0e4ebe3
      Tom Lane 提交于
      When tracking nested statements, contrib/pg_stat_statements formerly
      double-counted the execution costs of utility statements that directly
      contain an executable statement, such as EXPLAIN and DECLARE CURSOR.
      This was not obvious since the ProcessUtility and Executor hooks
      would each add their measured costs to the same stats table entry.
      However, with the new implementation that hashes utility and plannable
      statements differently, this showed up as seemingly-duplicate stats
      entries.  Fix that by disabling the Executor hooks when the query has a
      queryId of zero, which was the case already for such statements but is now
      more clearly specified in the code.  (The zero queryId was causing problems
      anyway because all such statements would add to a single bogus entry.)
      
      The PREPARE/EXECUTE case still results in counting the same execution
      in two different stats table entries, but it should be much less surprising
      to users that there are two entries in such cases.
      
      In passing, include a CommonTableExpr's ctename in the query hash.
      I had left it out originally on the grounds that we wanted to omit all
      inessential aliases, but since RTE_CTE RTEs are hashing their referenced
      names, we'd better hash the CTE names too to make sure we don't hash
      semantically different queries the same.
      e0e4ebe3
    • P
      initdb: Mark more messages for translation · 2005b77b
      Peter Eisentraut 提交于
      Some Windows-only messages had apparently been forgotten so far.
      
      Also make the wording of the messages more consistent with similar
      messages other parts, such as pg_ctl and pg_regress.
      2005b77b
  10. 29 3月, 2012 1 次提交
    • S
      Correct epoch of txid_current() when executed on a Hot Standby server. · 68219aaf
      Simon Riggs 提交于
      Initialise ckptXidEpoch from starting checkpoint and maintain the correct
      value as we roll forwards. This allows GetNextXidAndEpoch() to return the
      correct epoch when executed during recovery. Backpatch to 9.0 when the
      problem is first observable by a user.
      
      Bug report from Daniel Farina
      68219aaf