From b42518b1325ea79283a6d0560afc484da2cb5c20 Mon Sep 17 00:00:00 2001 From: Tim Ryan Date: Fri, 26 May 2023 15:26:00 -0400 Subject: [PATCH] change conn.execute to connection.execute (#9842) makes code executable --- doc/build/changelog/migration_20.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/changelog/migration_20.rst b/doc/build/changelog/migration_20.rst index 1fe47b7ac1..6582b6811c 100644 --- a/doc/build/changelog/migration_20.rst +++ b/doc/build/changelog/migration_20.rst @@ -770,7 +770,7 @@ the ORM-level :meth:`_orm.Session.execute` method):: t = Table("t", metadata_obj, autoload_with=connection) # execute SQL statements - result = conn.execute(t.select()) + result = connection.execute(t.select()) **Discussion** -- 2.47.3