Alias of the ``dialect_kwargs`` ``'oracle_on_null'``. .. deprecated:: 2.1 The 'on_null' attribute is deprecated.
(self)
| 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) |