We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4cb852 commit 3ef9f06Copy full SHA for 3ef9f06
1 file changed
contrib/fixeddecimal/README.md
@@ -120,3 +120,26 @@ test=# select '1000'::fixeddecimal * '1.129'::fixeddecimal;
120
1120.00
121
(1 row)
122
```
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