1. 23 Jun, 2017 3 commits
    • Simon Riggs's avatar
      Minor corrections to high availability docs · a79122b0
      Simon Riggs authored
      Startup process is displayed in pg_stat_activity, noted by Yugo Nagata.
      Transactions can be resolved at end of recovery.
      
      Author: Yugo Nagata, with addition by me
      a79122b0
    • Tom Lane's avatar
      Fix memory leakage in ICU encoding conversion, and other code review. · b6159202
      Tom Lane authored
      Callers of icu_to_uchar() neglected to pfree the result string when done
      with it.  This results in catastrophic memory leaks in varstr_cmp(),
      because of our prevailing assumption that btree comparison functions don't
      leak memory.  For safety, make all the call sites clean up leaks, though
      I suspect that we could get away without it in formatting.c.  I audited
      callers of icu_from_uchar() as well, but found no places that seemed to
      have a comparable issue.
      
      Add function API specifications for icu_to_uchar() and icu_from_uchar();
      the lack of any thought-through specification is perhaps not unrelated
      to the existence of this bug in the first place.  Fix icu_to_uchar()
      to guarantee a nul-terminated result; although no existing caller appears
      to care, the fact that it would have been nul-terminated except in
      extreme corner cases seems ideally designed to bite someone on the rear
      someday.  Fix ucnv_fromUChars() destCapacity argument --- in the worst
      case, that could perhaps have led to a non-nul-terminated result, too.
      Fix icu_from_uchar() to have a more reasonable definition of the function
      result --- no callers are actually paying attention, so this isn't a live
      bug, but it's certainly sloppily designed.  Const-ify icu_from_uchar()'s
      input string for consistency.
      
      That is not the end of what needs to be done to these functions, but
      it's as much as I have the patience for right now.
      
      Discussion: https://postgr.es/m/1955.1498181798@sss.pgh.pa.us
      b6159202
    • Tom Lane's avatar
      Add testing to detect errors of omission in "pin" dependency creation. · 8be8510c
      Tom Lane authored
      It's essential that initdb.c's setup_depend() scan each system catalog
      that could contain objects that need to have "p" (pin) entries in pg_depend
      or pg_shdepend.  Forgetting to add that, either when a catalog is first
      invented or when it first acquires DATA() entries, is an obvious bug
      hazard.  We can detect such omissions at reasonable cost by probing every
      OID-containing system catalog to see whether the lowest-numbered OID in it
      is pinned.  If so, the catalog must have been properly accounted for in
      setup_depend().  If the lowest OID is above FirstNormalObjectId then the
      catalog must have been empty at the end of initdb, so it doesn't matter.
      There are a small number of catalogs whose first entry is made later in
      initdb than setup_depend(), resulting in nonempty expected output of the
      test, but these can be manually inspected to see that they are OK.  Any
      future mistake of this ilk will manifest as a new entry in the test's
      output.
      
      Since pg_conversion is already in the test's output, add it to the set of
      catalogs scanned by setup_depend().  That has no effect today (hence, no
      catversion bump here) but it will protect us if we ever do add pin-worthy
      conversions.
      
      This test is very much like the catalog sanity checks embodied in
      opr_sanity.sql and type_sanity.sql, but testing pg_depend doesn't seem to
      fit naturally into either of those scripts' charters.  Hence, invent a new
      test script misc_sanity.sql, which can be a home for this as well as tests
      on any other catalogs we might want in future.
      
      Discussion: https://postgr.es/m/8068.1498155068@sss.pgh.pa.us
      8be8510c
  2. 22 Jun, 2017 11 commits
  3. 21 Jun, 2017 12 commits
    • Andres Freund's avatar
      Fix possibility of creating a "phantom" segment after promotion. · fb886c15
      Andres Freund authored
      When promoting a standby just after a XLOG_SWITCH record was replayed,
      and next segment(s) are already are locally available (via walsender,
      restore_command + trigger/recovery target), that segment could
      accidentally be recycled onto the past of the new timeline.  Later
      checkpointer would create a .ready file for it, assuming there was an
      error during creation, and it would get archived.  That causes trouble
      if another standby is later brought up from a basebackup from before
      the timeline creation, because it would try to read the
      segment, because XLogFileReadAnyTLI just tries all possible timelines,
      which doesn't have valid contents.  Thus replay would fail.
      
      The problem, if already occurred, can be fixed by removing the segment
      and/or having restore_command filter it out.
      
      The reason for the creation of such "phantom" segments was, that after
      an XLOG_SWITCH record the EndOfLog variable points to the beginning of
      the next segment, and RemoveXlogFile() used XLByteToPrevSeg().
      Normally RemoveXlogFile() doing so is harmless, because the last
      segment will still exist preventing InstallXLogFileSegment() from
      causing harm, but just after promotion there's no previous segment on
      the new timeline.
      
      Fix that by using XLByteToSeg() instead of XLByteToPrevSeg().
      
      Author: Andres Freund
      Reported-By: Greg Burek
      Discussion: https://postgr.es/m/20170619073026.zcwpe6mydsaz5ygd@alap3.anarazel.de
      Backpatch: 9.2-, bug older than all supported versions
      fb886c15
    • Tom Lane's avatar
      Manually un-break a few URLs that pgindent used to insist on splitting. · 780b3a4c
      Tom Lane authored
      These will no longer get re-split by pgindent runs, so it's worth cleaning
      them up now.
      
      Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org
      Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
      780b3a4c
    • Tom Lane's avatar
      Remove entab and associated detritus. · 81f056c7
      Tom Lane authored
      We don't need this anymore, because pg_bsd_indent has been taught to
      follow the same tab-vs-space rules that entab used to enforce.
      
      Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org
      Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
      81f056c7
    • Peter Eisentraut's avatar
      Reformat comments about ResultRelInfo · 113b0045
      Peter Eisentraut authored
      Also add a comment on its new member PartitionRoot.
      Reported-by: default avatarEtsuro Fujita <fujita.etsuro@lab.ntt.co.jp>
      113b0045
    • Tom Lane's avatar
      Phase 3 of pgindent updates. · 382ceffd
      Tom Lane authored
      Don't move parenthesized lines to the left, even if that means they
      flow past the right margin.
      
      By default, BSD indent lines up statement continuation lines that are
      within parentheses so that they start just to the right of the preceding
      left parenthesis.  However, traditionally, if that resulted in the
      continuation line extending to the right of the desired right margin,
      then indent would push it left just far enough to not overrun the margin,
      if it could do so without making the continuation line start to the left of
      the current statement indent.  That makes for a weird mix of indentations
      unless one has been completely rigid about never violating the 80-column
      limit.
      
      This behavior has been pretty universally panned by Postgres developers.
      Hence, disable it with indent's new -lpl switch, so that parenthesized
      lines are always lined up with the preceding left paren.
      
      This patch is much less interesting than the first round of indent
      changes, but also bulkier, so I thought it best to separate the effects.
      
      Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org
      Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
      382ceffd
    • Tom Lane's avatar
      Phase 2 of pgindent updates. · c7b8998e
      Tom Lane authored
      Change pg_bsd_indent to follow upstream rules for placement of comments
      to the right of code, and remove pgindent hack that caused comments
      following #endif to not obey the general rule.
      
      Commit e3860ffa wasn't actually using
      the published version of pg_bsd_indent, but a hacked-up version that
      tried to minimize the amount of movement of comments to the right of
      code.  The situation of interest is where such a comment has to be
      moved to the right of its default placement at column 33 because there's
      code there.  BSD indent has always moved right in units of tab stops
      in such cases --- but in the previous incarnation, indent was working
      in 8-space tab stops, while now it knows we use 4-space tabs.  So the
      net result is that in about half the cases, such comments are placed
      one tab stop left of before.  This is better all around: it leaves
      more room on the line for comment text, and it means that in such
      cases the comment uniformly starts at the next 4-space tab stop after
      the code, rather than sometimes one and sometimes two tabs after.
      
      Also, ensure that comments following #endif are indented the same
      as comments following other preprocessor commands such as #else.
      That inconsistency turns out to have been self-inflicted damage
      from a poorly-thought-through post-indent "fixup" in pgindent.
      
      This patch is much less interesting than the first round of indent
      changes, but also bulkier, so I thought it best to separate the effects.
      
      Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org
      Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
      c7b8998e
    • Peter Eisentraut's avatar
      Restart logical replication launcher when killed · f669c099
      Peter Eisentraut authored
      Author: Yugo Nagata <nagata@sraoss.co.jp>
      f669c099
    • Tom Lane's avatar
      Initial pgindent run with pg_bsd_indent version 2.0. · e3860ffa
      Tom Lane authored
      The new indent version includes numerous fixes thanks to Piotr Stefaniak.
      The main changes visible in this commit are:
      
      * Nicer formatting of function-pointer declarations.
      * No longer unexpectedly removes spaces in expressions using casts,
        sizeof, or offsetof.
      * No longer wants to add a space in "struct structname *varname", as
        well as some similar cases for const- or volatile-qualified pointers.
      * Declarations using PG_USED_FOR_ASSERTS_ONLY are formatted more nicely.
      * Fixes bug where comments following declarations were sometimes placed
        with no space separating them from the code.
      * Fixes some odd decisions for comments following case labels.
      * Fixes some cases where comments following code were indented to less
        than the expected column 33.
      
      On the less good side, it now tends to put more whitespace around typedef
      names that are not listed in typedefs.list.  This might encourage us to
      put more effort into typedef name collection; it's not really a bug in
      indent itself.
      
      There are more changes coming after this round, having to do with comment
      indentation and alignment of lines appearing within parentheses.  I wanted
      to limit the size of the diffs to something that could be reviewed without
      one's eyes completely glazing over, so it seemed better to split up the
      changes as much as practical.
      
      Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org
      Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
      e3860ffa
    • Tom Lane's avatar
      Adjust pgindent script to use pg_bsd_indent 2.0. · 8ff6d4ec
      Tom Lane authored
      Update version-checking code and list of switches.  Delete obsolete
      quasi-support for using GNU indent.  Remove a lot of no-longer-needed
      workarounds for bugs of the old version, and improve comments for
      the hacks that remain.  Update run_build() subroutine to fetch the
      pg_bsd_indent code from the newly established git repo for it.
      
      In passing, fix pgindent to not overwrite files that require no changes;
      this makes it a bit more friendly to run on a built tree.
      
      Adjust relevant documentation.
      
      Remove indent.bsd.patch; it's not relevant anymore (and was obsolete
      long ago anyway).  Likewise remove pgcppindent, since we're no longer
      in the business of shipping C++ code.
      
      Piotr Stefaniak is responsible for most of the algorithmic changes
      to the pgindent script; I did the rest.
      
      Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org
      Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
      8ff6d4ec
    • Tom Lane's avatar
      Final pgindent run with old pg_bsd_indent (version 1.3). · 9ef2dbef
      Tom Lane authored
      This is just to have a clean basis for comparison with the results of
      the new version (which will indeed end up reverting some of these
      changes...)
      
      Discussion: https://postgr.es/m/E1dAmxK-0006EE-1r@gemulon.postgresql.org
      Discussion: https://postgr.es/m/30527.1495162840@sss.pgh.pa.us
      9ef2dbef
    • Dean Rasheed's avatar
      Prevent table partitions from being turned into views. · bcbf392e
      Dean Rasheed authored
      A table partition must be a table, not a view, so don't allow a
      "_RETURN" rule to be added that would convert an existing table
      partition into a view.
      
      Amit Langote
      
      Discussion: https://postgr.es/m/CAEZATCVzFcAjZwC1bTFvJ09skB_sgkF4SwPKMywev-XTnimp9Q%40mail.gmail.com
      bcbf392e
    • Heikki Linnakangas's avatar
      Fix typo in comment. · ba1f0170
      Heikki Linnakangas authored
      Etsuro Fujita
      ba1f0170
  4. 20 Jun, 2017 7 commits
  5. 19 Jun, 2017 6 commits
  6. 18 Jun, 2017 1 commit