MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / on_null

Method on_null

lib/sqlalchemy/sql/schema.py:6651–6657  ·  view source on GitHub ↗

Alias of the ``dialect_kwargs`` ``'oracle_on_null'``. .. deprecated:: 2.1 The 'on_null' attribute is deprecated.

(self)

Source from the content-addressed store, hash-verified

6649
6650 @property
6651 def on_null(self) -> Optional[bool]:
6652 """Alias of the ``dialect_kwargs`` ``'oracle_on_null'``.
6653
6654 .. deprecated:: 2.1 The 'on_null' attribute is deprecated.
6655 """
6656 value: Optional[bool] = self.dialect_kwargs.get("oracle_on_null")
6657 return value
6658
6659 def _set_parent(self, parent: SchemaEventTarget, **kw: Any) -> None:
6660 assert isinstance(parent, Column)

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected