File tree Expand file tree Collapse file tree 3 files changed +0
-4
lines changed
Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ RUN apt-get update \
1717 build-essential \
1818 pgxnclient \
1919 postgresql-server-dev-$PG_MAJOR \
20- && pgxn install 'pg_uuidv7=1.6.0' \
2120 && pgxn install 'vector=0.8.0' \
2221 && apt-get remove -y build-essential postgresql-server-dev-$PG_MAJOR \
2322 && apt-get autoremove -y \
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ postgres=# \dx
3232------------------------+---------+------------+-------------------------------------------------------------------
3333 fuzzystrmatch | 1.2 | public | determine similarities and distance between strings
3434 pg_trgm | 1.6 | public | text similarity measurement and index searching based on trigrams
35- pg_uuidv7 | 1.5 | public | pg_uuidv7: create UUIDv7 values in postgres
3635 plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
3736 postgis | 3.4.2 | public | PostGIS geometry and geography spatial types and functions
3837 postgis_tiger_geocoder | 3.4.2 | tiger | PostGIS tiger geocoder and reverse geocoder
Original file line number Diff line number Diff line change 44
55# Load additional extensions into database
66psql -v ON_ERROR_STOP=1 --username " $POSTGRES_USER " --dbname " $POSTGRES_DB " << -EOSQL
7- CREATE EXTENSION IF NOT EXISTS pg_uuidv7;
8- ALTER EXTENSION pg_uuidv7 UPDATE;
97 CREATE EXTENSION IF NOT EXISTS vector;
108 ALTER EXTENSION vector UPDATE;
119EOSQL
You can’t perform that action at this time.
0 commit comments