From e384347ffb9b29fca146df54284e96a567adae9c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 25 May 2014 13:58:08 -0400 Subject: =?UTF-8?q?-=20Added=20the=20``hashable=3DFalse``=20flag=20to=20th?= =?UTF-8?q?e=20PG=20:class:`.HSTORE`=20type,=20which=20is=20needed=20to=20?= =?UTF-8?q?allow=20the=20ORM=20to=20skip=20over=20trying=20to=20"hash"=20a?= =?UTF-8?q?n=20ORM-mapped=20HSTORE=20column=20when=20requesting=20it=20in?= =?UTF-8?q?=20a=20mixed=20column/entity=20list.=20Patch=20courtesy=20Gunnl?= =?UTF-8?q?augur=20=C3=9E=C3=B3r=20Briem.=20=20Fixes=20#3053?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/sqlalchemy/dialects/postgresql/hstore.py | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/sqlalchemy/dialects/postgresql/hstore.py') diff --git a/lib/sqlalchemy/dialects/postgresql/hstore.py b/lib/sqlalchemy/dialects/postgresql/hstore.py index 74419460b..ee2c654a3 100644 --- a/lib/sqlalchemy/dialects/postgresql/hstore.py +++ b/lib/sqlalchemy/dialects/postgresql/hstore.py @@ -180,6 +180,7 @@ class HSTORE(sqltypes.Concatenable, sqltypes.TypeEngine): """ __visit_name__ = 'HSTORE' + hashable = False class comparator_factory(sqltypes.Concatenable.Comparator): """Define comparison operations for :class:`.HSTORE`.""" -- cgit v1.2.1