]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Add missing "temp_table_reflect_indexes" to SuiteRequirements
authorGord Thompson <gord@gordthompson.com>
Fri, 4 Sep 2020 17:03:03 +0000 (11:03 -0600)
committerGord Thompson <gord@gordthompson.com>
Tue, 8 Sep 2020 16:49:25 +0000 (10:49 -0600)
Provide a default value for this requirement to expose it
to external dialects.

Change-Id: I3801a9134493efb65caa6793ef466a3cfb701592

lib/sqlalchemy/testing/requirements.py

index 4114137d4e9608c4542ceb57a36348d17e725cee..0e851231aaab169bf9e0ab422d09d54450f2c264 100644 (file)
@@ -575,6 +575,10 @@ class SuiteRequirements(Requirements):
     def temp_table_reflection(self):
         return exclusions.open()
 
+    @property
+    def temp_table_reflect_indexes(self):
+        return self.temp_table_reflection
+
     @property
     def temp_table_names(self):
         """target dialect supports listing of temporary table names"""