From 9ad9ccec87b89023db611d70da2c6d455c29ab60 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 18 Mar 2013 12:55:56 -0700 Subject: 0.8.1 bump + test, changelog for hstore fix [ticket:2680] --- test/dialect/test_postgresql.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/dialect/test_postgresql.py') diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index 62e855356..005aed1ce 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -3101,6 +3101,12 @@ class HStoreRoundTripTest(fixtures.TablesTest): engine.connect() return engine + def test_reflect(self): + from sqlalchemy import inspect + insp = inspect(testing.db) + cols = insp.get_columns('data_table') + assert isinstance(cols[2]['type'], HSTORE) + @testing.only_on("postgresql+psycopg2") def test_insert_native(self): engine = testing.db -- cgit v1.2.1