You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the test instance of psql, create the extension in database.
87
+
find ./ -name "*.so" -exec strip {} \;
88
+
OUTFILE=pgdd.deb
89
+
rm ${OUTFILE}||true
90
+
fpm \
91
+
-s dir \
92
+
-t deb -n pgdd \
93
+
-v 0.5.0 \
94
+
--deb-no-default-config-files \
95
+
-p ${OUTFILE} \
96
+
-a amd64 \
97
+
.
109
98
110
-
```bash
111
-
CREATE EXTENSION pgdd;
99
+
sudo dpkg -i --force-overwrite ./pgdd.deb
112
100
```
113
101
114
-
> Note: When you see "Re-using existing database pgdd" your previous installed version of `pgdd` will be available. To ensure you are working with the latest version of the `pgdd` extension you must drop/create the extension, quit the psql shell, and re-run the `cargo pgrx run` command.
115
102
116
103
117
-
## Build binary packages
104
+
## Use Docker to build binary packages
118
105
119
-
Debian/Ubuntu Bionic binaries are available for 0.4.0
Copy file name to clipboardExpand all lines: pgdd.control
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
comment = 'An in-database data dictionary providing database introspection via standard SQL query syntax. Developed using pgx (https://github.com/zombodb/pgx).'
0 commit comments