-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install pg_vector
extension with pgxman
#106
Conversation
53b2875
to
7a9a50e
Compare
_cputype="$(uname -m)" | ||
|
||
case "$_cputype" in | ||
i386 | i486 | i686 | i786 | x86) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wow, that's some backward compatibility!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
@@ -310,7 +310,7 @@ def deep_update(a, b): | |||
pg_stat_statements.track_utility: 'off' | |||
extwlist.extensions: 'btree_gin,btree_gist,citext,extra_window_functions,first_last_agg,hll,\ | |||
hstore,hypopg,intarray,ltree,pgcrypto,pgq,pgq_node,pg_ivm,pg_trgm,postgres_fdw,mysql_fdw,multicorn,\ | |||
parquet_s3_fdw,tablefunc,uuid-ossp' | |||
parquet_s3_fdw,vector,tablefunc,uuid-ossp' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fine for now, but we need to think about how to get out of this business of adding stuff to this setting
What's changed?
pg_vector
extension withpgxman
. Note that it's intentional to always force installing extensions withpgxman
for now to avoid Docker layer caching in case there are any updates made to the extension packages.pg_vector
is working as expected.A demo of
pg_vector
running with the built image: