**INTERNAL** Release the per-request streaming executor. Safe to call multiple times.
(self)
| 102 | return deserialized_row |
| 103 | |
| 104 | def _shutdown_executor(self): |
| 105 | """ |
| 106 | **INTERNAL** |
| 107 | |
| 108 | Release the per-request streaming executor. Safe to call multiple times. |
| 109 | """ |
| 110 | if not self._executor_shutdown: |
| 111 | self._executor_shutdown = True |
| 112 | self._tp_executor.shutdown(wait=False) |
| 113 | |
| 114 | def _finalize(self, exc_val=None): |
| 115 | """ |