Return ``lastrow_has_defaults()`` from the underlying :class:`.ExecutionContext`. See :class:`.ExecutionContext` for details.
(self)
| 2138 | return None |
| 2139 | |
| 2140 | def lastrow_has_defaults(self) -> bool: |
| 2141 | """Return ``lastrow_has_defaults()`` from the underlying |
| 2142 | :class:`.ExecutionContext`. |
| 2143 | |
| 2144 | See :class:`.ExecutionContext` for details. |
| 2145 | |
| 2146 | """ |
| 2147 | |
| 2148 | return self.context.lastrow_has_defaults() |
| 2149 | |
| 2150 | def postfetch_cols(self) -> Optional[Sequence[Column[Any]]]: |
| 2151 | """Return ``postfetch_cols()`` from the underlying |
no outgoing calls