a 'null' operator that provides a boolean operation. Does not compile in a SQL context, used for testing operators only. .. versionadded:: 2.1
(a: Any, b: Any)
| 2641 | |
| 2642 | @_operator_fn |
| 2643 | def null_op(a: Any, b: Any) -> Any: |
| 2644 | """a 'null' operator that provides a boolean operation. |
| 2645 | |
| 2646 | Does not compile in a SQL context, used for testing operators only. |
| 2647 | |
| 2648 | .. versionadded:: 2.1 |
| 2649 | |
| 2650 | """ |
| 2651 | return a._null_operate(b) |
| 2652 | |
| 2653 | |
| 2654 | def is_comparison(op: OperatorType) -> bool: |
nothing calls this directly
no test coverage detected