MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / _create_result_map

Method _create_result_map

lib/sqlalchemy/sql/compiler.py:2238–2243  ·  view source on GitHub ↗

utility method used for unit tests only.

(self)

Source from the content-addressed store, hash-verified

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

Calls 1