Skip to content

Commit 6b1251d

Browse files
authored
Drop pgEdge instructions and other very minor wording fixes
1 parent aa74e80 commit 6b1251d

File tree

1 file changed

+4
-20
lines changed

1 file changed

+4
-20
lines changed

README.md

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,6 @@ Multicorn also includes, under the covers, **two** shared libraries:
2727
- `_utils.so` is a CPython extension which provides support for
2828
the previously mentioned `utils.py`.
2929

30-
## Using in PGEDGE (see https://github.com/pgedge/pgedge)
31-
32-
1.) Install pgEdge from the command line, in your home directory, with the curl command at the top of pgedge/pgedge
33-
34-
2.) Change into the pgedge directory and install pgXX
35-
```bash
36-
cd pgedge
37-
./pgedge install pg17 --start
38-
./pgedge install multicorn2
39-
```
40-
41-
3.) Use multicorn as you normally would AND you can install popular FDW's that use multicorn such as ElasticSerachFDW & BigQueryFDW
42-
```bash
43-
./pgedge install mqttclient
44-
```
45-
4630
## Building Multicorn2 against Postgres from Source
4731

4832
It is built the same way all standard postgres extensions are built with following dependcies needing to be installed:
@@ -69,7 +53,7 @@ python3 -m venv venv
6953
source venv/bin/activate
7054
```
7155

72-
### Download & Compile Postgres 13+ source code
56+
### Download & Compile Postgres 14+ source code
7357
```bash
7458
cd ~
7559
wget https://ftp.postgresql.org/pub/source/v17.0/postgresql-17.0.tar.gz
@@ -91,7 +75,7 @@ make
9175
sudo make install
9276
```
9377

94-
### Create Multicorn2 Extension
78+
### Create Multicorn Extension
9579
In your running instance of Postgres from the PSQL command line
9680
```sql
9781
CREATE EXTENSION multicorn;
@@ -104,7 +88,7 @@ When using a pre-built Postgres installed using your OS package manager, you wil
10488
### Install Dependencies for Building the Multicorn2 extension
10589
On Debian/Ubuntu systems:
10690
```bash
107-
sudo apt install -y build-essential ... postgresql-server-dev-13
91+
sudo apt install -y build-essential ... postgresql-server-dev-17
10892
sudo apt install -y python3 python3-dev python3-setuptools python3-pip
10993
```
11094

@@ -126,7 +110,7 @@ sudo make install
126110

127111
Note that the last step installs both the extension into Postgres and also the Python part. The latter is done using "pip install", and so can be undone using "pip uninstall".
128112

129-
### Create Multicorn2 Extension
113+
### Create Multicorn Extension
130114
In your running instance of Postgres from the PSQL command line
131115
```sql
132116
CREATE EXTENSION multicorn;

0 commit comments

Comments
 (0)