forked from EnterpriseDB/mysql_fdw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
107 lines (77 loc) · 2.95 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
MySQL FDW for PostgreSQL 9.1+
==============================
This PostgreSQL extension implements a Foreign Data Wrapper (FDW) for
the MySQL.
This code is experimental, and largely intended as a pet project for me
to experiment with and learn about FDWs in PostgreSQL.
By all means use it, but do so entirely at your own risk! You have been
warned!
Building
--------
Install MySQL, or just the C client library, and Once that's done, the
extension can be built with:
PATH=/usr/local/pgsql/bin/:/usr/local/mysql/bin:$PATH make USE_PGXS=1
sudo PATH=/usr/local/pgsql/bin/:/usr/local/mysql/bin:$PATH make USE_PGXS=1 install
(assuming you have PostgreSQL 9.1 in /usr/local/pgsql and MySQL in
/usr/local/mysql).
I've tested on Mac OS X 10.7 only, but other *nix's should also work.
I haven't tested on Windows, but the code should be good on MinGW.
Limitations
-----------
- No attempt is made to pushdown quals to MySQL.
- The MySQL connection used to plan queries isn't currently reused
during execution.
Usage
-----
The following parameters can be set on a MySQL foreign server:
address: The address or hostname of the MySQL server.
Default: 127.0.0.1
port: The port number on which the MySQL server is listening.
Default: 3306
The following parameter can be set on a MySQL foreign table:
database: The name of the MySQL database to query.
Default: NULL
query: An SQL query to define the data set on the MySQL server.
table: The name of a table (quoted and qualified as required)
on the MySQL table.
Note that the query and table paramters are mutually exclusive. Using
query can provide either a simple way to push down quals (which of
course is fixed at definition time), or to base remote tables on
more complex SQL queries.
The following parameter can be set on a user mapping for a MySQL
foreign server:
username: The username to use when connecting to MySQL
Default <none>
password: The password to authenticate to the MySQL server with.
Default: <none>
Example
-------
-- Install the extension
CREATE EXTENSION mysql_fdw;
-- Create the foreign server, a pointer to the MySQL server.
CREATE SERVER mysql_svr
FOREIGN DATA WRAPPER mysql_fdw
OPTIONS (address '127.0.0.1', port '3306');
-- Create one or more foreign tables on the MySQL server. The first of
-- these maps to a remote table, whilst the second uses an SQL query.
CREATE FOREIGN TABLE employees (
id integer,
name text,
address text)
SERVER mysql_svr
OPTIONS (table 'hr.employees');
CREATE FOREIGN TABLE overtime_2010 (
id integer,
employee_id integer,
hours integer)
SERVER mysql_svr
OPTIONS (query 'SELECT id, employee_id, hours FROM hr.overtime WHERE year = 2010;');
-- Create a user mapping to tell the FDW the username/password to
-- use to connect to MySQL, for PUBLIC. This could be done on a per-
-- role basis.
CREATE USER MAPPING FOR PUBLIC
SERVER mysql_svr
OPTIONS (username 'dpage', password '');
--
Dave Page