1. 13 6月, 2018 1 次提交
  2. 12 6月, 2018 8 次提交
  3. 11 6月, 2018 5 次提交
  4. 09 6月, 2018 3 次提交
  5. 08 6月, 2018 16 次提交
    • T
      Update time zone data files to tzdata release 2018e. · f9c94e87
      Tom Lane 提交于
      This commit pulls in the latest tzdata from Postgres 11. We
      intentionally left out comment changes to
      `src/backend/utils/adt/datetime.c` because it's not applicable (yet).
      
      > DST law changes in North Korea.  Redefinition of "daylight savings" in
      > Ireland, as well as for some past years in Namibia and Czechoslovakia.
      > Additional historical corrections for Czechoslovakia.
      >
      > With this change, the IANA database models Irish timekeeping as following
      > "standard time" in summer, and "daylight savings" in winter, so that the
      > daylight savings offset is one hour behind standard time not one hour
      > ahead.  This does not change their UTC offset (+1:00 in summer, 0:00 in
      > winter) nor their timezone abbreviations (IST in summer, GMT in winter),
      > though now "IST" is more correctly read as "Irish Standard Time" not "Irish
      > Summer Time".  However, the "is_dst" column in the pg_timezone_names view
      > will now be true in winter and false in summer for the Europe/Dublin zone.
      >
      > Similar changes were made for Namibia between 1994 and 2017, and for
      > Czechoslovakia between 1946 and 1947.
      >
      > So far as I can find, no Postgres internal logic cares about which way
      > tm_isdst is reported; in particular, since commit b2cbced9 we do not
      > rely on it to decide how to interpret ambiguous timestamps during DST
      > transitions.  So I don't think this change will affect any Postgres
      > behavior other than the timezone-view outputs.
      >
      > Discussion: https://postgr.es/m/30996.1525445902@sss.pgh.pa.us
      (cherry picked from commit 234bb985)
      Co-authored-by: NJesse Zhang <sbjesse@gmail.com>
      Co-authored-by: NTaylor Vesely <tvesely@pivotal.io>
      f9c94e87
    • T
      Sync our copy of the timezone library with IANA release tzcode2018e. · 20269256
      Tom Lane 提交于
      The non-cosmetic changes involve teaching the "zic" tzdata compiler about
      negative DST.  While I'm not currently intending that we start using
      negative-DST data right away, it seems possible that somebody would try
      to use our copy of zic with bleeding-edge IANA data.  So we'd better be
      out in front of this change code-wise, even though it doesn't matter for
      the data file we're shipping.
      
      Discussion: https://postgr.es/m/30996.1525445902@sss.pgh.pa.us
      (cherry picked from commit b45f6613)
      20269256
    • T
      Update time zone data files to tzdata release 2018d. · 2f947d38
      Tom Lane 提交于
      DST law changes in Palestine and Antarctica (Casey Station).  Historical
      corrections for Portugal and its colonies, as well as Enderbury, Jamaica,
      Turks & Caicos Islands, and Uruguay.
      
      (cherry picked from commit df629586)
      2f947d38
    • J
      Remove dead timezone data files · c2ac283c
      Jesse Zhang 提交于
      This should have been part of commit
      f590dc94 but we forgot. Now remove them
      for good.
      Co-authored-by: NTaylor Vesely <tvesely@pivotal.io>
      c2ac283c
    • S
      fixing the broken concourse badge in README (#5120) · d1f23c96
      Scott Kahler 提交于
      d1f23c96
    • D
      docs - remove restricted start for gpcopy procedure · 999beafb
      David Yozie 提交于
      999beafb
    • N
      resgroup: load resgroup settings even for bypassed queries. · 92ffdcb7
      Ning Yu 提交于
      `SHOW memory_spill_ratio` will always display 20 when it's the first
      query in a connection (if you run this query in psql and pressed TAB
      when entering the command then the implicit queries ran by the tab
      completion function will be the first), the root cause is that SHOW
      command will be bypassed in resgroup, so the bound resgroup will not be
      assigned, and the resgroup's settings will not be loaded.
      
      To display the proper value in this case we will also load the resgroup
      settings even for bypassed queries.
      92ffdcb7
    • A
      Reduce runtimes for some qp_* tests. · 94c30fdb
      Ashwin Agrawal 提交于
      Before:
           qp_functions             ... ok (76.24 sec)  (diff:0.06 sec)
           qp_gist_indexes4         ... ok (88.46 sec)  (diff:0.07 sec)
           qp_with_clause           ... ok (130.70 sec)  (diff:0.32 sec)
      
      After:
           qp_functions             ... ok (4.49 sec)  (diff:0.06 sec)
           qp_gist_indexes4         ... ok (16.18 sec)  (diff:0.06 sec)
           qp_with_clause           ... ok (54.41 sec)  (diff:0.30 sec)
      94c30fdb
    • L
      docs - misc updates to gptransfer (#5048) · 77c0d584
      Lisa Owen 提交于
      * docs - misc updates to gptransfer
      
      - conref from best practices to admin guide
      - qualify use for migration to diff number of segments
      - misc edits
      
      * conditionalize
      77c0d584
    • D
      Gpcopy migration/using docs (#5074) · dbb4b61a
      David Yozie 提交于
      * docs -draft update for migrating with gpcopy
      
      * docs - migrating w/ gpcopy - updated ditamap
      
      * add 'pivotal' condition
      
      * some edits, additions, reorg
      
      * removing ssh as a requirement (per comment on related PR)
      
      * Clarifying that same-cluster copies aren't supported
      
      * 4.3.16 -> 4.3.26
      
      * replace --truncate with --truncate-source-after
      
      * add note to start clusters in restricted mode
      
      * add note about md5 validation when migrating between major version
      
      * add pg_dump, pg_dumpall, psql dependencies in prerequisites section
      
      * add info about actual free space needed for migration
      
      * updating discussion of free space calculation
      
      * updating to use new gpcopy option names
      
      * more updates to clarify migration proc
      
      * removing contentious statement about indexing (not present in main docs); adding resource groups to list of objects copied
      
      * removing note about md5xor not working for version migration
      
      * add note regarding validation with --append
      
      * add note to install client package to get gpcopy dependencies
      
      * removed --no-compression info as that's the default for same-host copies; relocated basic migration instructions
      
      * replacing error section with reviewed info from ref page
      
      * updating migration topics to use procedure format
      
      * adding some post-migration steps for gpcopy
      
      * address more feedback from brian; reorganize migration steps a bit; add general post-migration instructions from the relnotes
      dbb4b61a
    • L
      99eeb524
    • T
      Fix tzparse calls during initdb · a9375827
      Taylor Vesely 提交于
      The return value of tzparse() has changed as of commit b749790a, but the
      corresponding change to the tzparse() function in pg_load_tz() was never made.
      As a result, under certain circumstances the server might pick a bogus
      timezone.
      a9375827
    • B
      Add tests to verify that dummy joins are created · fab372cb
      Bhuvnesh Chaudhary 提交于
      For semi join queries if the constraints can eliminate the scanned relations,
      the resulting relation should be marked as a dummy and the join using it should
      be a dummy join.
      fab372cb
    • M
      docs - gpcopy fix typo · 65e3a822
      mkiyama 提交于
      65e3a822
    • D
      19e2176e
    • C
      Update version of third-party ext tarball · 9f496c47
      Chris Hajas 提交于
      The only change in the tarball is that we have removed the libraries and
      header files for ddboost. These have already been removed for centos for
      some time.
      Co-authored-by: NChris Hajas <chajas@pivotal.io>
      Co-authored-by: NKaren Huddleston <khuddleston@pivotal.io>
      9f496c47
  6. 07 6月, 2018 7 次提交
    • S
      Add unit test for gpaddmirrors with interview. · e43fbb65
      Shoaib Lari 提交于
      We have added a unit test for gpaddmirrors when the mirror data directories are
      provided interactively.
      Co-authored-by: NNadeem Ghani <nghani@pivotal.io>
      Co-authored-by: NShoaib Lari <slari@pivotal.io>
      e43fbb65
    • J
      User can see cpu usage on cpuset groups (#5115) · 62a12801
      Jialun 提交于
      Cpu usage of cpuset groups should also be displayed in
      gp_toolkit.gp_resgroup_status.
      62a12801
    • P
      Fix teardown issue of TCP interconnect · 1c1f1644
      Pengzhou Tang 提交于
      Previously, for an interconnect connection, if no data are available at
      sender peer, the sender sends a customized EOS packet to the receiver
      and disables further send operations using shutdown(SHUT_WR), then
      somehow, the sender closes the connection totally with close()
      immediately and it counts on the kernel and TCP stack to guarantee the
      data been transformed to the receiver. The problem is, on some platform,
      if the connection is closed on one side, the TCP behave is undetermined,
      the packets may be lost and receiver may report an unexpected error.
      
      The correct way is sender blocks on the connection until receiver
      getting the EOS packet and close its peer, then the sender can close
      the connection safely.
      1c1f1644
    • P
      Fix hang issue due to result node don't squelch outer node explicitly · 2c011ce4
      Pengzhou Tang 提交于
      For a result node with one-time filter, if it's outer plan is not
      empty and contains a motion node, then it needs to squelch the outer
      node explicitly if the one-time filter check is false. This is necessary
      espically for motion node under it, ExecSquelchNode() force a stop
      message so the interconnect sender don't stuck at recending or polling
      ACKs.
      2c011ce4
    • P
      skip wal sender for ProcessStartupPacket fault · f48cd729
      Pengzhou Tang 提交于
      This is a quick fix to make dispatch test pass, for a long term,
      we need to redesign the dispatch test or make it a unit test.
      f48cd729
    • X
      Upgrade pgbouncer to 1.8.1 (#5077) · eb7df886
      Xiaoran Wang 提交于
      * upgrade pgbouncer to 1.8.1
      
      * support PAM/HBA auth type
      
      * update submodule pgbouncer commit
      
      * update pgbouncer's commit to support SSL connection
      
      -change pgbouncer server_tls_ciphers default value
      eb7df886
    • B
      Bump ORCA to 2.62 · 431498e6
      Bhuvnesh Chaudhary 提交于
      431498e6