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

Method normalize_name

lib/sqlalchemy/engine/interfaces.py:1824–1832  ·  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

1822 raise NotImplementedError()
1823
1824 def normalize_name(self, name: str) -> str:
1825 """convert the given name to lowercase if it is detected as
1826 case insensitive.
1827
1828 This method is only used if the dialect defines
1829 requires_name_normalize=True.
1830
1831 """
1832 raise NotImplementedError()
1833
1834 def denormalize_name(self, name: str) -> str:
1835 """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