From cc718cccc0bf8a01abdf4068c7ea4f32c9322af6 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 4 Jun 2019 17:29:20 -0400 Subject: Run row value processors up front as part of a larger series of changes to generalize row-tuples, RowProxy becomes plain Row and is no longer a "proxy"; the DBAPI row is now copied directly into the Row when constructed, result handling occurs at once. Subsequent changes will break out Row into a new version that behaves fully a tuple. Change-Id: I2ffa156afce5d21c38f28e54c3a531f361345dd5 --- test/sql/test_compiler.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/sql/test_compiler.py') diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py index 7eda0207a..cda22a5ac 100644 --- a/test/sql/test_compiler.py +++ b/test/sql/test_compiler.py @@ -4590,7 +4590,9 @@ class ResultMapTest(fixtures.TestBase): comp = MyCompiler(default.DefaultDialect(), stmt1) eq_( - ResultMetaData._create_result_map(contexts[stmt2.element][0]), + ResultMetaData._create_description_match_map( + contexts[stmt2.element][0] + ), { "otherid": ( "otherid", -- cgit v1.2.1