1. 23 8月, 2012 3 次提交
  2. 22 8月, 2012 5 次提交
    • P
      Fix install-strip on Mac OS X · b748d8f2
      Peter Eisentraut 提交于
      There was a hack put into install-sh to call strip with the correct
      options on Mac OS X.  But that never worked, because configure
      disabled stripping on that platform altogether.  So remove that dead
      code, and while we're at it, update install-sh to the latest upstream
      source (from Automake).
      
      Instead, set up the right strip options in programs.m4, so this now
      actually works the way it was originally intended.
      b748d8f2
    • P
      Mark DateTimeParseError() noreturn · 5c45d2f8
      Peter Eisentraut 提交于
      This avoids a warning from clang 3.2 about an uninitialized variable
      'dtype' in date_in().
      5c45d2f8
    • T
      Update 9.2 release notes to reflect commits to date. · 0830cc9f
      Tom Lane 提交于
      I was unable to entirely resist the temptation to copy-edit related
      entries, but will save most of that for a separate pass.
      0830cc9f
    • T
      Avoid somewhat-theoretical overflow risks in RecordIsValid(). · 10685ec0
      Tom Lane 提交于
      This improves on commit 51fed14d by
      eliminating the assumption that we can form <some pointer value> +
      <some offset> without overflow.  The entire point of those tests is that
      we don't trust the offset value, so coding them in a way that could wrap
      around if the buffer happens to be near the top of memory doesn't seem
      sound.  Instead, track the remaining space as a size_t variable and
      compare offsets against that.
      
      Also, improve comment about why we need the extra early check on
      xl_tot_len.
      10685ec0
    • T
      Fix dumping of security_barrier views with circular dependencies. · 0f524ea0
      Tom Lane 提交于
      If a view has circular dependencies, pg_dump splits it into a CREATE TABLE
      and a CREATE RULE command to break the dependency loop.  However, if the
      view has reloptions, those options cannot be applied in the CREATE TABLE
      command, because views and tables have different allowed reloptions so
      CREATE TABLE would reject them.  Instead apply the reloptions after the
      CREATE RULE, using ALTER VIEW SET.
      0f524ea0
  3. 21 8月, 2012 8 次提交
  4. 20 8月, 2012 3 次提交
  5. 19 8月, 2012 2 次提交
    • T
      Make use of LATERAL in information_schema.sequences view. · c246eb5a
      Tom Lane 提交于
      It said "XXX: The following could be improved if we had LATERAL" ...
      so let's do that.
      
      No catversion bump since either version of the view works fine.
      c246eb5a
    • T
      Another round of planner fixes for LATERAL. · 084a29c9
      Tom Lane 提交于
      Formerly, subquery pullup had no need to examine other entries in the range
      table, since they could not contain any references to the subquery being
      pulled up.  That's no longer true with LATERAL, so now we need to be able
      to visit rangetable subexpressions to replace Vars referencing the
      pulled-up subquery.  Also, this means that extract_lateral_references must
      be unsurprised at encountering lateral PlaceHolderVars, since such might be
      created when pulling up a subquery that's underneath an outer join with
      respect to the lateral reference.
      084a29c9
  6. 18 8月, 2012 1 次提交
  7. 17 8月, 2012 8 次提交
  8. 16 8月, 2012 10 次提交