Use pg13, not pg11 in CONTRIBUTING.md (#4864)

pull/4866/head
Onur Tirtir 2021-04-01 16:25:01 +03:00 committed by GitHub
parent 67bc990c1c
commit 57c3e226cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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-11 postgresql-11 \
sudo apt-get install -y postgresql-server-dev-13 postgresql-13 \
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 postgresql11-devel postgresql11-server \
sudo yum install -y postgresql13-devel postgresql13-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-11/bin/pg_config ./configure
PG_CONFIG=/usr/pgsql-13/bin/pg_config ./configure
make
sudo make install
cd src/test/regress