@@ -158,7 +158,7 @@ def temporary_tables(self):
158158 def table_reflection (self ):
159159 """target database has general support for table reflection"""
160160 return sqlalchemy .testing .exclusions .open ()
161-
161+
162162 @property
163163 def temp_table_reflection (self ):
164164 """ComponentReflection test is intricate and simply cannot function without this exclusion being defined here.
@@ -181,9 +181,50 @@ def unique_constraint_reflection(self):
181181 Databricks doesn't support UNIQUE constraints.
182182 """
183183 return sqlalchemy .testing .exclusions .closed ()
184-
184+
185185 @property
186186 def reflects_pk_names (self ):
187187 """Target driver reflects the name of primary key constraints."""
188188
189- return sqlalchemy .testing .exclusions .open ()
189+ return sqlalchemy .testing .exclusions .open ()
190+
191+ @property
192+ def datetime_implicit_bound (self ):
193+ """target dialect when given a datetime object will bind it such
194+ that the database server knows the object is a date, and not
195+ a plain string.
196+ """
197+
198+ return sqlalchemy .testing .exclusions .open ()
199+
200+ @property
201+ def tuple_in (self ):
202+ return sqlalchemy .testing .exclusions .open ()
203+
204+ @property
205+ def ctes (self ):
206+ return sqlalchemy .testing .exclusions .open ()
207+
208+ @property
209+ def ctes_with_update_delete (self ):
210+ return sqlalchemy .testing .exclusions .open ()
211+
212+ @property
213+ def delete_from (self ):
214+ """Target must support DELETE FROM..FROM or DELETE..USING syntax"""
215+ return sqlalchemy .testing .exclusions .open ()
216+
217+ @property
218+ def table_value_constructor (self ):
219+ return sqlalchemy .testing .exclusions .open ()
220+
221+ @property
222+ def reflect_tables_no_columns (self ):
223+ return sqlalchemy .testing .exclusions .open ()
224+
225+ @property
226+ def denormalized_names (self ):
227+ """Target database must have 'denormalized', i.e.
228+ UPPERCASE as case insensitive names."""
229+
230+ return sqlalchemy .testing .exclusions .open ()
0 commit comments