1. 03 Oct, 2020 3 commits
  2. 02 Oct, 2020 4 commits
  3. 01 Oct, 2020 5 commits
  4. 30 Sep, 2020 6 commits
    • Alvaro Herrera's avatar
      Reword partitioning error message · 9fc21227
      Alvaro Herrera authored
      The error message about columns in the primary key not including all of
      the partition key was unclear; reword it.
      
      Backpatch all the way to pg11, where it appeared.
      Reported-by: default avatarNagaraj Raj <nagaraj.sf@yahoo.com>
      Discussion: https://postgr.es/m/64062533.78364.1601415362244@mail.yahoo.com
      9fc21227
    • Tom Lane's avatar
      Fix handling of BC years in to_date/to_timestamp. · 489c9c34
      Tom Lane authored
      Previously, a conversion such as
      	to_date('-44-02-01','YYYY-MM-DD')
      would result in '0045-02-01 BC', as the code attempted to interpret
      the negative year as BC, but failed to apply the correction needed
      for our internal handling of BC years.  Fix the off-by-one problem.
      
      Also, arrange for the combination of a negative year and an
      explicit "BC" marker to cancel out and produce AD.  This is how
      the negative-century case works, so it seems sane to do likewise.
      
      Continue to read "year 0000" as 1 BC.  Oracle would throw an error,
      but we've accepted that case for a long time so I'm hesitant to
      change it in a back-patch.
      
      Per bug #16419 from Saeed Hubaishan.  Back-patch to all supported
      branches.
      
      Dar Alathar-Yemen and Tom Lane
      
      Discussion: https://postgr.es/m/16419-d8d9db0a7553f01b@postgresql.org
      489c9c34
    • Heikki Linnakangas's avatar
    • Peter Eisentraut's avatar
      Fix XML id to match GUC name · 300b6984
      Peter Eisentraut authored
      For some reason, the id of the description of
      max_parallel_maintenance_workers has been
      guc-max-parallel-workers-maintenance since the beginning.  Flip that
      around to make it consistent.
      300b6984
    • Tom Lane's avatar
      Remove obsolete replication settings within TAP tests. · 151c0c5f
      Tom Lane authored
      PostgresNode.pm set "max_wal_senders = 5" for replication testing,
      but this seems to be slightly too low for our current test suite.
      Slower buildfarm members frequently report "number of requested standby
      connections exceeds max_wal_senders" failures, due to old walsenders
      not exiting instantaneously.  Usually, the test does not fail overall
      because of automatic walreceiver restart, but sometimes the failure
      becomes visible; and in any case such retries slow down the test.
      
      That value came in with commit 89ac7004, but was soon obsoleted by
      f6d6d292, which raised the built-in default from zero to 10; so that
      PostgresNode.pm is actually setting it to less than the conservative
      built-in default.  That seems pretty pointless, so let's remove the
      special setting and let the default prevail, in hopes of making
      the TAP tests more robust.
      
      Likewise, the setting "max_replication_slots = 5" is obsolete and
      can be removed.
      
      While here, reverse-engineer a comment about why we're choosing
      less-than-default values for some other settings.
      
      (Note: before v12, max_wal_senders counted against max_connections
      so that the latter setting also needs some fiddling with.)
      
      Back-patch to v10 where the subscription tests were added.
      It's likely that the older branches aren't pushing the boundaries
      of max_wal_senders, but I'm disinclined to spend time trying to
      figure out exactly when it started to be a problem.
      
      Discussion: https://postgr.es/m/723911.1601417626@sss.pgh.pa.us
      151c0c5f
    • David Rowley's avatar
      Doc: Improve clarity on partitioned table limitations · 2b888647
      David Rowley authored
      Explicitly mention that primary key constraints are also included in the
      limitation that the constraint columns must be a superset of the partition key
      columns.
      
      Wording suggestion from Tom Lane.
      
      Discussion: https://postgr.es/m/64062533.78364.1601415362244@mail.yahoo.com
      Backpatch-through: 11, where unique constraints on partitioned tables were added
      2b888647
  5. 29 Sep, 2020 8 commits
    • Tom Lane's avatar
      Fix make_timestamp[tz] to accept negative years as meaning BC. · a094c8ff
      Tom Lane authored
      Previously we threw an error.  But make_date already allowed the case,
      so it is inconsistent as well as unhelpful for make_timestamp not to.
      
      Both functions continue to reject year zero.
      
      Code and test fixes by Peter Eisentraut, doc changes by me
      
      Discussion: https://postgr.es/m/13c0992c-f15a-a0ca-d839-91d3efd965d9@2ndquadrant.com
      a094c8ff
    • Tom Lane's avatar
      Fix memory leak in plpgsql's CALL processing. · a6b1f536
      Tom Lane authored
      When executing a CALL or DO in a non-atomic context (i.e., not inside
      a function or query), plpgsql creates a new plan each time through,
      as a rather hacky solution to some resource management issues.  But
      it failed to free this plan until exit of the current procedure or DO
      block, resulting in serious memory bloat in procedures that called
      other procedures many times.  Fix by remembering to free the plan,
      and by being more honest about restoring the previous state (otherwise,
      recursive procedure calls have a problem).
      
      There was also a smaller leak associated with recalculation of the
      "target" list of output variables.  Fix that by using the statement-
      lifespan context to hold non-permanent values.
      
      Back-patch to v11 where procedures were introduced.
      
      Pavel Stehule and Tom Lane
      
      Discussion: https://postgr.es/m/CAFj8pRDiiU1dqym+_P4_GuTWm76knJu7z9opWayBJTC0nQGUUA@mail.gmail.com
      a6b1f536
    • Alexander Korotkov's avatar
      Support for ISO 8601 in the jsonpath .datetime() method · 927d9abb
      Alexander Korotkov authored
      The SQL standard doesn't require jsonpath .datetime() method to support the
      ISO 8601 format.  But our to_json[b]() functions convert timestamps to text in
      the ISO 8601 format in the sake of compatibility with javascript.  So, we add
      support of the  ISO 8601 to the jsonpath .datetime() in the sake compatibility
      with to_json[b]().
      
      The standard mode of datetime parsing currently supports just template patterns
      and separators in the format string.  In order to implement ISO 8601, we have to
      add support of the format string double quotes to the standard parsing mode.
      
      Discussion: https://postgr.es/m/94321be0-cc96-1a81-b6df-796f437f7c66%40postgrespro.ru
      Author: Nikita Glukhov, revised by me
      Backpatch-through: 13
      927d9abb
    • Alexander Korotkov's avatar
      Remove excess space from jsonpath .datetime() default format string · c2aa562e
      Alexander Korotkov authored
      bffe1bd6 has introduced jsonpath .datetime() method, but default formats
      for time and timestamp contain excess space between time and timezone.  This
      commit removes this excess space making behavior of .datetime() method
      standard-compliant.
      
      Discussion: https://postgr.es/m/94321be0-cc96-1a81-b6df-796f437f7c66%40postgrespro.ru
      Author: Nikita Glukhov
      Backpatch-through: 13
      c2aa562e
    • Fujii Masao's avatar
      Archive timeline history files in standby if archive_mode is set to "always". · fd26f782
      Fujii Masao authored
      Previously the standby server didn't archive timeline history files
      streamed from the primary even when archive_mode is set to "always",
      while it archives the streamed WAL files. This could cause the PITR to
      fail because there was no required timeline history file in the archive.
      The cause of this issue was that walreceiver didn't mark those files as
      ready for archiving.
      
      This commit makes walreceiver mark those streamed timeline history
      files as ready for archiving if archive_mode=always. Then the archiver
      process archives the marked timeline history files.
      
      Back-patch to all supported versions.
      
      Reported-by: Grigory Smolkin
      Author: Grigory Smolkin, Fujii Masao
      Reviewed-by: David Zhang, Anastasia Lubennikova
      Discussion: https://postgr.es/m/54b059d4-2b48-13a4-6f43-95a087c92367@postgrespro.ru
      fd26f782
    • Michael Paquier's avatar
      Fix progress reporting of REINDEX CONCURRENTLY · e66bcfb4
      Michael Paquier authored
      This addresses a couple of issues with the so-said subject:
      - Report the correct parent relation with the index actually being
      rebuilt or validated.  Previously, the command status remained set to
      the last index created for the progress of the index build and
      validation, which would be incorrect when working on a table that has
      more than one index.
      - Use the correct phase when waiting before the drop of the old
      indexes.  Previously, this was reported with the same status as when
      waiting before the old indexes are marked as dead.
      
      Author: Matthias van de Meent, Michael Paquier
      Discussion: https://postgr.es/m/CAEze2WhqFgcwe1_tv=sFYhLWV2AdpfukumotJ6JNcAOQs3jufg@mail.gmail.com
      Backpatch-through: 12
      e66bcfb4
    • Tom Lane's avatar
      Add for_each_from, to simplify loops starting from non-first list cells. · 56fe0089
      Tom Lane authored
      We have a dozen or so places that need to iterate over all but the
      first cell of a List.  Prior to v13 this was typically written as
      	for_each_cell(lc, lnext(list_head(list)))
      Commit 1cff1b95 changed these to
      	for_each_cell(lc, list, list_second_cell(list))
      This patch introduces a new macro for_each_from() which expresses
      the start point as a list index, allowing these to be written as
      	for_each_from(lc, list, 1)
      This is marginally more efficient, since ForEachState.i can be
      initialized directly instead of backing into it from a ListCell
      address.  It also seems clearer and less typo-prone.
      
      Some of the remaining uses of for_each_cell() look like they could
      profitably be changed to for_each_from(), but here I confined myself
      to changing uses of list_second_cell().
      
      Also, fix for_each_cell_setup() and for_both_cell_setup() to
      const-ify their arguments; that's a simple oversight in 1cff1b95.
      
      Back-patch into v13, on the grounds that (1) the const-ification
      is a minor bug fix, and (2) it's better for back-patching purposes
      if we only have two ways to write these loops rather than three.
      
      In HEAD, also remove list_third_cell() and list_fourth_cell(),
      which were also introduced in 1cff1b95, and are unused as of
      cc99baa4.  It seems unlikely that any third-party code would
      have started to use them already; anyone who has can be directed
      to list_nth_cell instead.
      
      Discussion: https://postgr.es/m/CAApHDvpo1zj9KhEpU2cCRZfSM3Q6XGdhzuAS2v79PH7WJBkYVA@mail.gmail.com
      56fe0089
    • Michael Paquier's avatar
      Revert "Change SHA2 implementation based on OpenSSL to use EVP digest routines" · fe0a1dc5
      Michael Paquier authored
      This reverts commit e21cbb4b, as the switch to EVP routines requires a
      more careful design where we would need to have at least our wrapper
      routines return a status instead of issuing an error by themselves to
      let the caller do the error handling.  The memory handling was also
      incorrect and could cause leaks in the backend if a failure happened,
      requiring most likely a callback to do the necessary cleanup as the only
      clean way to be able to allocate an EVP context requires the use of an
      allocation within OpenSSL.  The potential rework of the wrappers also
      impacts the fallback implementation when not building with OpenSSL.
      
      Originally, prairiedog has reported a compilation failure, but after
      discussion with Tom Lane this needs a better design.
      
      Discussion: https://postgr.es/m/20200928073330.GC2316@paquier.xyz
      fe0a1dc5
  6. 28 Sep, 2020 9 commits
  7. 27 Sep, 2020 1 commit
    • Tom Lane's avatar
      Move resolution of AlternativeSubPlan choices to the planner. · 41efb834
      Tom Lane authored
      When commit bd3dadda introduced AlternativeSubPlans, I had some
      ambitions towards allowing the choice of subplan to change during
      execution.  That has not happened, or even been thought about, in the
      ensuing twelve years; so it seems like a failed experiment.  So let's
      rip that out and resolve the choice of subplan at the end of planning
      (in setrefs.c) rather than during executor startup.  This has a number
      of positive benefits:
      
      * Removal of a few hundred lines of executor code, since
      AlternativeSubPlans need no longer be supported there.
      
      * Removal of executor-startup overhead (particularly, initialization
      of subplans that won't be used).
      
      * Removal of incidental costs of having a larger plan tree, such as
      tree-scanning and copying costs in the plancache; not to mention
      setrefs.c's own costs of processing the discarded subplans.
      
      * EXPLAIN no longer has to print a weird (and undocumented)
      representation of an AlternativeSubPlan choice; it sees only the
      subplan actually used.  This should mean less confusion for users.
      
      * Since setrefs.c knows which subexpression of a plan node it's
      working on at any instant, it's possible to adjust the estimated
      number of executions of the subplan based on that.  For example,
      we should usually estimate more executions of a qual expression
      than a targetlist expression.  The implementation used here is
      pretty simplistic, because we don't want to expend a lot of cycles
      on the issue; but it's better than ignoring the point entirely,
      as the executor had to.
      
      That last point might possibly result in shifting the choice
      between hashed and non-hashed EXISTS subplans in a few cases,
      but in general this patch isn't meant to change planner choices.
      Since we're doing the resolution so late, it's really impossible
      to change any plan choices outside the AlternativeSubPlan itself.
      
      Patch by me; thanks to David Rowley for review.
      
      Discussion: https://postgr.es/m/1992952.1592785225@sss.pgh.pa.us
      41efb834
  8. 26 Sep, 2020 3 commits
  9. 25 Sep, 2020 1 commit
    • Thomas Munro's avatar
      Defer flushing of SLRU files. · dee663f7
      Thomas Munro authored
      Previously, we called fsync() after writing out individual pg_xact,
      pg_multixact and pg_commit_ts pages due to cache pressure, leading to
      regular I/O stalls in user backends and recovery.  Collapse requests for
      the same file into a single system call as part of the next checkpoint,
      as we already did for relation files, using the infrastructure developed
      by commit 3eb77eba.  This can cause a significant improvement to
      recovery performance, especially when it's otherwise CPU-bound.
      
      Hoist ProcessSyncRequests() up into CheckPointGuts() to make it clearer
      that it applies to all the SLRU mini-buffer-pools as well as the main
      buffer pool.  Rearrange things so that data collected in CheckpointStats
      includes SLRU activity.
      
      Also remove the Shutdown{CLOG,CommitTS,SUBTRANS,MultiXact}() functions,
      because they were redundant after the shutdown checkpoint that
      immediately precedes them.  (I'm not sure if they were ever needed, but
      they aren't now.)
      
      Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us> (parts)
      Tested-by: default avatarJakub Wartak <Jakub.Wartak@tomtom.com>
      Discussion: https://postgr.es/m/CA+hUKGLJ=84YT+NvhkEEDAuUtVHMfQ9i-N7k_o50JmQ6Rpj_OQ@mail.gmail.com
      dee663f7