From 0995cfef494f27004d4723372cc051f875a86ec6 Mon Sep 17 00:00:00 2001 From: Onder Kalaci Date: Fri, 1 Oct 2021 10:03:27 +0200 Subject: [PATCH 1/2] Reflect PG14 changes in the readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c60994907..ebb0e3b66 100644 --- a/README.md +++ b/README.md @@ -81,14 +81,14 @@ Install packages on Ubuntu / Debian: ```bash curl https://install.citusdata.com/community/deb.sh > add-citus-repo.sh sudo bash add-citus-repo.sh -sudo apt-get -y install postgresql-13-citus-10.2 +sudo apt-get -y install postgresql-14-citus-10.2 ``` Install packages on CentOS / Fedora / Red Hat: ```bash curl https://install.citusdata.com/community/rpm.sh > add-citus-repo.sh sudo bash add-citus-repo.sh -sudo yum install -y citus102_13 +sudo yum install -y citus102_14 ``` To add Citus to your local PostgreSQL database, add the following to `postgresql.conf`: From 0ce6650c884d0cc5295887570884269346cfe4ed Mon Sep 17 00:00:00 2001 From: Onur Tirtir Date: Thu, 16 Sep 2021 01:13:43 +0300 Subject: [PATCH 2/2] Use pg14 in CONTRIBUTING.md --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 63a6e5f51..1bed4259e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -47,7 +47,7 @@ why we ask this as well as instructions for how to proceed, see the sudo apt-key add - sudo apt-get update - sudo apt-get install -y postgresql-server-dev-13 postgresql-13 \ + sudo apt-get install -y postgresql-server-dev-14 postgresql-14 \ autoconf flex git libcurl4-gnutls-dev libicu-dev \ libkrb5-dev liblz4-dev libpam0g-dev libreadline-dev \ libselinux1-dev libssl-dev libxslt-dev libzstd-dev \ @@ -94,14 +94,14 @@ why we ask this as well as instructions for how to proceed, see the ```bash sudo yum update -y sudo yum groupinstall -y 'Development Tools' - sudo yum install -y postgresql13-devel postgresql13-server \ + sudo yum install -y postgresql14-devel postgresql14-server \ git libcurl-devel libxml2-devel libxslt-devel \ libzstd-devel llvm-toolset-7-clang llvm5.0 lz4-devel \ openssl-devel pam-devel readline-devel git clone https://github.com/citusdata/citus.git cd citus - PG_CONFIG=/usr/pgsql-13/bin/pg_config ./configure + PG_CONFIG=/usr/pgsql-14/bin/pg_config ./configure make sudo make install cd src/test/regress