Skip to content

Commit 4916086

Browse files
committed
get rid of pg_uuid
1 parent d51c5e0 commit 4916086

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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 \

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

initdb-extensions.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ set -e
44

55
# Load additional extensions into database
66
psql -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;
119
EOSQL

0 commit comments

Comments
 (0)