1. 17 7月, 2020 1 次提交
  2. 16 7月, 2020 1 次提交
    • M
      docs - add information for SSL with standby master (#10438) · 581ef05c
      Mel Kiyama 提交于
      * docs - add information for SSL with standby master
      
      --SSL file should not be in $MASTER_DATA_DIRECTORY
      
      Also
      --Add not about not using NULL ciphers
      --Correct default directory for SSL files to $MASTER_DATA_DIRECTORY
      
      * docs - review comment updates
      581ef05c
  3. 13 7月, 2020 1 次提交
  4. 08 7月, 2020 1 次提交
  5. 03 7月, 2020 2 次提交
  6. 02 7月, 2020 1 次提交
  7. 30 6月, 2020 1 次提交
  8. 29 6月, 2020 1 次提交
  9. 26 6月, 2020 4 次提交
  10. 24 6月, 2020 1 次提交
  11. 23 6月, 2020 1 次提交
  12. 19 6月, 2020 1 次提交
    • M
      docs - add views pg_stat_all_tables and indexes (#10248) · 74c5bb7d
      Mel Kiyama 提交于
      * docs - add views pg_stat_all_tables and indexes
      
      pg_stat_all_indexes
      pg_stat_all_tables
      
      Also add some statistics GUCs.
      --track_activities
      --track_counts
      
      * docs - clarify seq_scan and idx_scan refer to the total number of scans from all segments
      
      * docs - minor edits
      74c5bb7d
  13. 18 6月, 2020 1 次提交
    • M
      docs - update postGIS 2.5.4 docs (#10297) · 39a25f82
      Mel Kiyama 提交于
      * docs - update postGIS 2.5.4 docs
      
      Updates for Greenplum PostGIS 2.5.4 v2
      
      --Add list of PostGIS extensions
      --Add support for PostGIS TIGER geocoder, address standardizer and address rules files.
      --Update install/uninstall instructions to use CREATE EXTENSION command
      --Remove postgis_manager.sh script
      --Remove PostGIS Raster limitation.
      
      * docs updated PostGIS 2.5.4 docs based on review comments.
      
      * docs - removed postgis_raster extension.
      
      * docs - review comment updates  -Added section for installing the PostGIS package
      -Updated section on removing PostGIS package
      -Fix typos.
      
      * docs - updated platform requirements for PostGIS 2.5.4 v2
      -also removed "beta" from GreenplumR
      39a25f82
  14. 17 6月, 2020 1 次提交
  15. 12 6月, 2020 1 次提交
  16. 11 6月, 2020 2 次提交
  17. 10 6月, 2020 2 次提交
  18. 09 6月, 2020 1 次提交
  19. 08 6月, 2020 1 次提交
    • P
      Retire guc gp_session_role (#9396) · f6297b96
      Paul Guo 提交于
      Use guc gp_role only now and replace the functionality of guc gp_session_role with it
      also. Previously we have both gucs. The difference of the two gucs are (copied
      from code comment):
      
       * gp_session_role
       *
       * - does not affect the operation of the backend, and
       * - does not change during the lifetime of PostgreSQL session.
       *
       * gp_role
       *
       * - determines the operating role of the backend, and
       * - may be changed by a superuser via the SET command.
      
      This is not friendly for coding. For example, You could find Gp_role and
      Gp_session_role are set as GP_ROLE_DISPATCH on Postmaster & many aux processes
      on all nodes (even QE nodes) in a cluster, so you can see that to differ from
      QD postmaster and QE postmaster, current gpdb uses an additional -E option in
      postmaster arguments. These makes developers confusing when writing role branch
      related code given we have three related variables.  Also some related code is
      even buggy now (e.g. 'set gp_role' even FATAL quits).
      
      With this patch we just have gp_role now. Some changes which might be
      interesting in the patch are:
      
      1. For postmaster, we should specify '-c gp_role=' (e.g. via pg_ctl argument) to
         determine the role else we assume the utility role.
      
      2. For stand-alone backend, utility role is enforced (no need to specify by
         users).
      
      3. Could still connect QE/QD nodes using utility mode with PGOPTIONS, etc as
         before.
      
      4. Remove the '-E' gpdb hacking and align the '-E' usage with upstream.
      
      5. Move pm_launch_walreceiver out of the fts related shmem given the later is
         not used on QE.
      Reviewed-by: NBhuvnesh Chaudhary <bchaudhary@pivotal.io>
      Reviewed-by: NGang Xiong <gxiong@pivotal.io>
      Reviewed-by: NHao Wu <gfphoenix78@gmail.com>
      Reviewed-by: NYandong Yao <yyao@pivotal.io>
      f6297b96
  20. 06 6月, 2020 1 次提交
  21. 05 6月, 2020 3 次提交
  22. 03 6月, 2020 1 次提交
    • A
      Allow CLUSTER on append-optimized tables · 179feb77
      Andrey Borodin 提交于
      Cluster on AO tables is implemented by sorting the entire AO table using
      tuple sort framework, according to a btree index defined on the table.
      
      A faster way to cluster is to scan the tuples in index-order, but this
      requires index-scan support.  Append-optimized tables do not support
      index-scans currently, but when this support is added, the cluster
      operation can be enhanced accordingly.
      
      Author: Andrey Borodin <amborodin@acm.org>
      Reviewed and slightly edited by: Asim R P <pasim@vmare.com>
      
      Merges GitHub PR #9996
      179feb77
  23. 28 5月, 2020 1 次提交
  24. 21 5月, 2020 2 次提交
  25. 20 5月, 2020 2 次提交
  26. 16 5月, 2020 4 次提交
  27. 15 5月, 2020 1 次提交