EnterpriseDB / mysql_fdw

PostgreSQL foreign data wrapper for MySQL
Other
535 stars 162 forks source link

Fix IMPORT FOREIGN SCHEMA issues with LIMIT/EXCLUDE #84

Closed InfoSec812 closed 8 years ago

InfoSec812 commented 8 years ago

The code for setting up the WHERE clause when using LIMIT/EXCLUDE in IMPORT FOREIGN SCHEMA does not wrap the table names in single quotes and as such causes an error in the WHERE clause for the foreign schema import. This patch wraps those table names in single quotes and resolves issue #83.

ibrarahmad commented 8 years ago

Thanks for the patch.