MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / normalize_name

Method normalize_name

lib/sqlalchemy/engine/interfaces.py:1855–1863  ·  view source on GitHub ↗

convert the given name to lowercase if it is detected as case insensitive. This method is only used if the dialect defines requires_name_normalize=True.

(self, name: str)

Source from the content-addressed store, hash-verified

1853 raise NotImplementedError()
1854
1855 def normalize_name(self, name: str) -> str:
1856 """convert the given name to lowercase if it is detected as
1857 case insensitive.
1858
1859 This method is only used if the dialect defines
1860 requires_name_normalize=True.
1861
1862 """
1863 raise NotImplementedError()
1864
1865 def denormalize_name(self, name: str) -> str:
1866 """convert the given name to a case insensitive identifier

Callers 15

_handle_synonymsMethod · 0.45
get_schema_namesMethod · 0.45
get_table_namesMethod · 0.45
get_temp_table_namesMethod · 0.45
get_view_namesMethod · 0.45
get_sequence_namesMethod · 0.45
_value_or_raiseMethod · 0.45
get_multi_columnsMethod · 0.45

Calls

no outgoing calls

Tested by 2

test_name_normalizeMethod · 0.36