Home
last modified time | relevance | path

Searched refs:_should_execute_deprecated (Results 1 – 8 of 8) sorted by relevance

/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/test/sql/
H A Dtest_deprecations.py410 assert DDL("")._should_execute_deprecated("x", tbl, cx)
412 assert DDL("", on=target)._should_execute_deprecated("x", tbl, cx)
414 assert not DDL("", on="bogus")._should_execute_deprecated(
420 )._should_execute_deprecated("x", tbl, cx)
424 )._should_execute_deprecated("x", tbl, cx)
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/test/engine/
H A Dtest_ddlevents.py676 assert DDL('')._should_execute_deprecated('x', tbl, cx)
677 assert DDL('', on=target)._should_execute_deprecated('x', tbl, cx)
679 _should_execute_deprecated('x', tbl, cx)
681 _should_execute_deprecated('x', tbl, cx)
683 _should_execute_deprecated('x', tbl, cx))
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/test/engine/
H A Dtest_ddlevents.py677 assert DDL('')._should_execute_deprecated('x', tbl, cx)
678 assert DDL('', on=target)._should_execute_deprecated('x', tbl, cx)
680 _should_execute_deprecated('x', tbl, cx)
682 _should_execute_deprecated('x', tbl, cx)
684 _should_execute_deprecated('x', tbl, cx))
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/test/engine/
H A Dtest_ddlevents.py790 assert DDL("")._should_execute_deprecated("x", tbl, cx)
791 assert DDL("", on=target)._should_execute_deprecated("x", tbl, cx)
792 assert not DDL("", on="bogus")._should_execute_deprecated("x", tbl, cx)
793 assert DDL("", on=lambda d, x, y, z: True)._should_execute_deprecated(
798 )._should_execute_deprecated("x", tbl, cx)
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/lib/sqlalchemy/sql/
H A Dddl.py140 if self._should_execute_deprecated(
224 if self.on is not None and not self._should_execute_deprecated(
242 def _should_execute_deprecated(self, event, target, bind, **kw): member in DDLElement
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/sql/
H A Dddl.py132 if self._should_execute_deprecated(event_name,
215 not self._should_execute_deprecated(None, target, bind, **kw):
231 def _should_execute_deprecated(self, event, target, bind, **kw): member in DDLElement
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/lib/sqlalchemy/sql/
H A Dddl.py140 if self._should_execute_deprecated(
223 if self.on is not None and not self._should_execute_deprecated(
241 def _should_execute_deprecated(self, event, target, bind, **kw): member in DDLElement
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/lib/sqlalchemy/sql/
H A Dddl.py132 if self._should_execute_deprecated(event_name,
215 not self._should_execute_deprecated(None, target, bind, **kw):
231 def _should_execute_deprecated(self, event, target, bind, **kw): member in DDLElement