summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorRodrigo Menezes <rodrigo.menezes@moat.com>2014-08-14 14:47:23 -0400
committerRodrigo Menezes <rodrigo.menezes@moat.com>2014-08-14 14:47:23 -0400
commit649f06759d933f4aacdfbb302e845e2bcb5e7641 (patch)
tree8851c11251706c61680b4b29b231c5dec44a2c57 /setup.cfg
parent2c9ff9115c72f25cfcc500cd9f42e1035e54e582 (diff)
downloadsqlalchemy-649f06759d933f4aacdfbb302e845e2bcb5e7641.tar.gz
Added support for postgres_relkind.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg7
1 files changed, 7 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 7517220a6..4ec4b0837 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -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: