utility method used for unit tests only.
(self)
| 2236 | |
| 2237 | @util.preload_module("sqlalchemy.engine.cursor") |
| 2238 | def _create_result_map(self): |
| 2239 | """utility method used for unit tests only.""" |
| 2240 | cursor = util.preloaded.engine_cursor |
| 2241 | return cursor.CursorResultMetaData._create_description_match_map( |
| 2242 | self._result_columns |
| 2243 | ) |
| 2244 | |
| 2245 | # assigned by crud.py for insert/update statements |
| 2246 | _get_bind_name_for_col: _BindNameForColProtocol |