Skip to content

Commit 3ef9f06

Browse files
david-rowleytuhaihe
authored andcommitted
Add installation nodes to README.md
1 parent f4cb852 commit 3ef9f06

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

contrib/fixeddecimal/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,26 @@ test=# select '1000'::fixeddecimal * '1.129'::fixeddecimal;
120120
1120.00
121121
(1 row)
122122
```
123+
124+
Installation
125+
------------
126+
127+
To install fixeddecimal you must build the extension from source code.
128+
129+
First ensure that your PATH environment variable is setup to find the correct
130+
PostgreSQL installation first. You can check this by typing running the
131+
pg_config command and checking the paths listed.
132+
133+
Once you are confident your PATH variable is set correctly
134+
135+
```
136+
make
137+
make install
138+
make installcheck
139+
```
140+
141+
From psql, in order to create the extension you must type:
142+
143+
```
144+
CREATE EXTENSION fixeddecimal;
145+
```

0 commit comments

Comments
 (0)