1. 05 Apr, 2017 7 commits
  2. 04 Apr, 2017 20 commits
  3. 03 Apr, 2017 5 commits
  4. 02 Apr, 2017 6 commits
  5. 01 Apr, 2017 2 commits
    • Kevin Grittner's avatar
      Fix two undocumented parameters to functions from ENR patch. · 41bd155d
      Kevin Grittner authored
      On ProcessUtility document the parameter, to match others.
      
      On CreateCachedPlan drop the queryEnv parameter.  It was not
      referenced within the function, and had been added on the
      assumption that with some unknown future usage of QueryEnvironment
      it might be useful to do something there.  We have avoided other
      "just in case" implementation of unused paramters, so drop it here.
      
      Per gripe from Tom Lane
      41bd155d
    • Alvaro Herrera's avatar
      BRIN de-summarization · c655899b
      Alvaro Herrera authored
      When the BRIN summary tuple for a page range becomes too "wide" for the
      values actually stored in the table (because the tuples that were
      present originally are no longer present due to updates or deletes), it
      can be useful to remove the outdated summary tuple, so that a future
      summarization can install a tighter summary.
      
      This commit introduces a SQL-callable interface to do so.
      
      Author: Álvaro Herrera
      Reviewed-by: Eiji Seki
      Discussion: https://postgr.es/m/20170228045643.n2ri74ara4fhhfxf@alvherre.pgsql
      c655899b