summaryrefslogtreecommitdiff
path: root/test/dialect/postgresql
diff options
context:
space:
mode:
authornathan <nathan.alexander.rice@gmail.com>2013-12-10 10:01:51 -0500
committernathan <nathan.alexander.rice@gmail.com>2013-12-10 10:01:51 -0500
commitf285b3536fe01f21409e201fbeeac559ab423a9d (patch)
tree88688e41ea285c7aaf91b8e71bd9f10c159d5807 /test/dialect/postgresql
parentba73d619ca2199d96e92646021af3eb95186725e (diff)
downloadsqlalchemy-f285b3536fe01f21409e201fbeeac559ab423a9d.tar.gz
sqlalchemy/dialects/postgresql/pgjson:
- Fixed reference to HSTORE - Corrected spelling of SQLAlchemy sqlalchemy/dialects/postgresql/psycopg2: - Added psycopg2 specific wrapper type for JSON which uses inherent json deserialization facilities - Added code to detect and utilize the JSON wrapper if psycopg2 >= 2.5 test/dialect/postgresql/test_types: - removed reference to use_native_hstore
Diffstat (limited to 'test/dialect/postgresql')
-rw-r--r--test/dialect/postgresql/test_types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py
index 5a944ae9d..114b36f8f 100644
--- a/test/dialect/postgresql/test_types.py
+++ b/test/dialect/postgresql/test_types.py
@@ -1768,7 +1768,7 @@ class JSONRoundTripTest(fixtures.TablesTest):
def _non_native_engine(self):
if testing.against("postgresql+psycopg2"):
- engine = engines.testing_engine(options=dict(use_native_hstore=False))
+ engine = engines.testing_engine()
else:
engine = testing.db
engine.connect()