From efb89f211319b19231260572422e4814639cace7 Mon Sep 17 00:00:00 2001 From: Ants Aasma Date: Thu, 3 Jan 2008 23:38:55 +0000 Subject: fix not calling the result processor of PGArray subtypes. (a rather embarrasing copypaste error) [ticket:913] --- lib/sqlalchemy/databases/postgres.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/databases/postgres.py') diff --git a/lib/sqlalchemy/databases/postgres.py b/lib/sqlalchemy/databases/postgres.py index c21d803d3..01b1b10d3 100644 --- a/lib/sqlalchemy/databases/postgres.py +++ b/lib/sqlalchemy/databases/postgres.py @@ -138,7 +138,7 @@ class PGArray(sqltypes.Concatenable, sqltypes.TypeEngine): return process def result_processor(self, dialect): - item_proc = self.item_type.bind_processor(dialect) + item_proc = self.item_type.result_processor(dialect) def process(value): if value is None: return value -- cgit v1.2.1