-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Trusted Language Extensions (#405)
* add flex, fix copy pasta. * chore: pg_tle in Docker (#542) * chore: set pg_tle as 29th extension * chore: place pg_tle in vars.yml * chore: add pg_tle to Dockerfile * chore: bump version * chore: new line * chore: add test for pg_tle * fix: remove specified schema * chore: update sql test formatting --------- Co-authored-by: Han Qiao <[email protected]> * chore: update release checksum * Update ansible/Dockerfile * fix: reinstate pg_tle in docker (#556) * fix: reinstate pg_tle in Dockerfile * fix * fix: put back flex --------- Co-authored-by: dragarcia <[email protected]> Co-authored-by: Han Qiao <[email protected]>
- Loading branch information
1 parent
65b709f
commit 141e7da
Showing
8 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# pg_tle | ||
- name: pg_tle - download | ||
git: | ||
repo: https://github.com/aws/pg_tle.git | ||
dest: /tmp/pg_tle | ||
version: v{{ pg_tle_release }} | ||
|
||
- name: pg_tle - install | ||
make: | ||
chdir: /tmp/pg_tle | ||
target: install | ||
become: yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
postgres-version = "15.1.0.44" | ||
postgres-version = "15.1.0.45" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
create extension if not exists pg_tle; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,4 @@ | |
\ir 26-hypopg.sql | ||
\ir 27-pg_repack.sql | ||
\ir 28-pgvector.sql | ||
\ir 29-pg_tle.sql |