From 654b462d668a2ced4e87077b9babb2590acbf983 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 25 Sep 2020 22:31:16 -0400 Subject: tutorial 2.0 WIP Add SelectBase.exists() method as it seems strange this is not available already. The Exists construct itself does not provide full SELECT-building capabilities so it makes sense this should be used more like a scalar_subquery. Make sure stream_results is getting set up when yield_per is used, for 2.0 style statements as well. this was hardcoded inside of Query.yield_per() and is now moved to take place within QueryContext. Change-Id: Icafcd4fd9b708772343d56edf40995c9e8f835d6 --- lib/sqlalchemy/testing/suite/test_unicode_ddl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/sqlalchemy/testing/suite') diff --git a/lib/sqlalchemy/testing/suite/test_unicode_ddl.py b/lib/sqlalchemy/testing/suite/test_unicode_ddl.py index 6c6518011..af6b382ae 100644 --- a/lib/sqlalchemy/testing/suite/test_unicode_ddl.py +++ b/lib/sqlalchemy/testing/suite/test_unicode_ddl.py @@ -188,7 +188,7 @@ class UnicodeSchemaTest(fixtures.TablesTest): eq_( repr(t), ( - "Table('\\u6e2c\\u8a66', MetaData(bind=None), " + "Table('\\u6e2c\\u8a66', MetaData(), " "Column('\\u6e2c\\u8a66_id', Integer(), " "table=<\u6e2c\u8a66>), " "schema=None)" @@ -198,7 +198,7 @@ class UnicodeSchemaTest(fixtures.TablesTest): eq_( repr(t), ( - "Table('測試', MetaData(bind=None), " + "Table('測試', MetaData(), " "Column('測試_id', Integer(), " "table=<測試>), " "schema=None)" -- cgit v1.2.1