mysql_fdw
mysql_fdw
mysql_fdw : Foreign data wrapper for querying a MySQL server
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 8600 | mysql_fdw
|
mysql_fdw
|
2.9.3 |
FDW
|
BSD 3-Clause
|
C
|
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--s-d-r
|
No
|
Yes
|
No
|
Yes
|
yes
|
no
|
| Relationships | |
|---|---|
| See Also | oracle_fdw
tds_fdw
db2_fdw
postgres_fdw
wrappers
multicorn
odbc_fdw
jdbc_fdw
|
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PGDG
|
2.9.3 |
18
17
16
15
14
13
|
mysql_fdw |
- |
| RPM | PGDG
|
2.9.3 |
18
17
16
15
14
13
|
mysql_fdw_$v* |
- |
| DEB | PGDG
|
2.9.3 |
18
17
16
15
14
13
|
postgresql-$v-mysql-fdw |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 | PG13 |
|---|---|---|---|---|---|---|
el8.x86_64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
el8.aarch64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
el9.x86_64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
el9.aarch64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
el10.x86_64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
el10.aarch64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
d12.x86_64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
d12.aarch64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
d13.x86_64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
d13.aarch64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
u22.x86_64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
u22.aarch64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
u24.x86_64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
u24.aarch64
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
PGDG 2.9.3
|
Source
pig build pkg mysql_fdw; # build spec not readyInstall
Make sure PGDG repo available:
pig repo add pgdg -u # add pgdg repo and update cacheInstall this extension with pig:
pig install mysql_fdw; # install via package name, for the active PG version
pig install mysql_fdw -v 18; # install for PG 18
pig install mysql_fdw -v 17; # install for PG 17
pig install mysql_fdw -v 16; # install for PG 16
pig install mysql_fdw -v 15; # install for PG 15
pig install mysql_fdw -v 14; # install for PG 14
pig install mysql_fdw -v 13; # install for PG 13Create this extension with:
CREATE EXTENSION mysql_fdw;Last updated on