- tds_fdw(connect to MsSQL)
- mysql_fdw
- oracle_fdw
- pg_cron
- SQLite
- Firebird
- MonetDB
- Cassandra
- MongoDB
- Redis
- pg-hint-plan
- postgis
- Correct variable substitution for pg_cron
- More lightweight images with only one wrapper type
-
Use THIS instruction from repository.
-
Remember, that by default DB for pgcron is "postgres"
- Use THIS official instruction.
- Use THIS official instruction.
- Add to /var/lib/postgresql/data/postgresql.conf the lines below:
shared_preload_libraries = 'pg_cron, pg_stat_statements, pg_hint_plan'
cron.database_name = 'postgres'
- After first run the container, need to create extensions:
CREATE EXTENSION pg_cron;
LOAD 'pg_hint_plan';
CREATE EXTENSION postgis;
CREATE EXTENSION dblink;
CREATE EXTENSION mysql_fdw;
CREATE EXTENSION oracle_fdw ;
CREATE EXTENSION postgres_fdw;
CREATE EXTENSION tds_fdw;
- The list of all possible wrapper extensions you can find here