utility method used for unit tests only.
(self)
| 2296 | |
| 2297 | @util.preload_module("sqlalchemy.engine.cursor") |
| 2298 | def _create_result_map(self): |
| 2299 | """utility method used for unit tests only.""" |
| 2300 | cursor = util.preloaded.engine_cursor |
| 2301 | return cursor.CursorResultMetaData._create_description_match_map( |
| 2302 | self._result_columns |
| 2303 | ) |
| 2304 | |
| 2305 | # assigned by crud.py for insert/update statements |
| 2306 | _get_bind_name_for_col: _BindNameForColProtocol |