]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
postfix of I5f0fe800e31aac052926cebe9206763eef9a804c
authorFederico Caselli <cfederico87@gmail.com>
Fri, 24 Oct 2025 21:54:48 +0000 (23:54 +0200)
committerFederico Caselli <cfederico87@gmail.com>
Fri, 24 Oct 2025 21:54:48 +0000 (23:54 +0200)
Change-Id: Ic007a5bd842207a2c5a56374953e48c6acc7b254

test/sql/test_types.py

index 4d73eb9931a2f2406423afd745777361e2c475b0..899d2227c184b133e76a9760c630a4479ba8d3d2 100644 (file)
@@ -3115,7 +3115,7 @@ class BinaryTest(fixtures.TablesTest, AssertsExecutionResults):
         compiled = select(cast(literal(util.b("foo")), LargeBinary)).compile(
             dialect=testing.db.dialect, compile_kwargs={"literal_binds": True}
         )
-        result = connection.execute(compiled.statement)
+        result = connection.exec_driver_sql(compiled.string)
         eq_(result.scalar(), util.b("foo"))
 
     def test_bind_processor_no_dbapi(self):