diff options
| author | Rodrigo Menezes <rodrigo.menezes@moat.com> | 2014-08-14 14:47:23 -0400 |
|---|---|---|
| committer | Rodrigo Menezes <rodrigo.menezes@moat.com> | 2014-08-14 14:47:23 -0400 |
| commit | 649f06759d933f4aacdfbb302e845e2bcb5e7641 (patch) | |
| tree | 8851c11251706c61680b4b29b231c5dec44a2c57 /setup.cfg | |
| parent | 2c9ff9115c72f25cfcc500cd9f42e1035e54e582 (diff) | |
| download | sqlalchemy-649f06759d933f4aacdfbb302e845e2bcb5e7641.tar.gz | |
Added support for postgres_relkind.
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -26,6 +26,13 @@ profile_file=test/profiles.txt # create database link test_link connect to scott identified by tiger using 'xe'; oracle_db_link = test_link +# host name of a postgres database that has the postgres_fdw extension. +# to create this run: +# CREATE EXTENSION postgres_fdw; +# GRANT USAGE ON FOREIGN DATA WRAPPER postgres_fdw TO public; +# this can be localhost to create a loopback foreign table +postgres_test_db_link = localhost + [db] default=sqlite:///:memory: |
