From 8155138e0aac09c3c78d2eb9b3e06cc092ce42d3 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 29 Aug 2014 16:29:46 -0400 Subject: [PATCH] - use default dialect for compile test here --- test/orm/inheritance/test_single.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/orm/inheritance/test_single.py b/test/orm/inheritance/test_single.py index 23b1c4fd2a..be42cce521 100644 --- a/test/orm/inheritance/test_single.py +++ b/test/orm/inheritance/test_single.py @@ -164,7 +164,8 @@ class SingleInheritanceTest(testing.AssertsCompiledSQL, fixtures.MappedTest): "SELECT count(*) AS count_1 " "FROM (SELECT employees.employee_id AS employees_employee_id " "FROM employees " - "WHERE employees.type IN (?, ?)) AS anon_1" + "WHERE employees.type IN (:type_1, :type_2)) AS anon_1", + use_default_dialect=True ) def test_select_from(self): -- 2.47.3