10000 removes plpython3u by inian · Pull Request #31 · supabase/postgres · GitHub
[go: up one dir, main page]

Skip to content

removes plpython3u #31

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

Merged
merged 1 commit into from
Nov 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Unmodified Postgres with some useful plugins. Our goal with this repo is not to
-[pgsql-http](https://github.com/pramsey/pgsql-http). HTTP client for Postgres.
-[plpgsql_check](https://github.com/okbob/plpgsql_check). Linter tool for PL/pgSQL.
-[plv8](https://github.com/plv8/plv8). Write in Javascript functions in Postgres.
-[plpython3u](https://www.postgresql.org/docs/current/plpython-python23.html). Python3 enabled by default. Write in Python functions in Postgres.
-[PL/Java](https://github.com/tada/pljaval). Write in Java functions in Postgres.

## Install
Expand Down
7 changes: 0 additions & 7 deletions ansible/tasks/setup-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,6 @@
target: install
become: yes

# plpython
- name: Install plpython
apt:
pkg: postgresql-plpython3-12
update_cache: yes
cache_valid_time: 3600

# pgcron
- name: Install pgcron
apt:
Expand Down
4 changes: 0 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ RUN pgtapDependencies="git \
&& apt-get autoremove -y \
&& rm -rf /tmp/pgtap /var/lib/apt/lists/* /var/tmp/*

# install plpython3
RUN apt-get update \
&& apt-get install postgresql-plpython3-12 -y

# install pgAudit
ENV PGAUDIT_VERSION=1.4.0

Expand Down
0