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

Method denormalize_name

lib/sqlalchemy/engine/interfaces.py:1834–1842  ·  view source on GitHub ↗

convert the given name to a case insensitive identifier for the backend if it is an all-lowercase name. This method is only used if the dialect defines requires_name_normalize=True.

(self, name: str)

Source from the content-addressed store, hash-verified

1832 raise NotImplementedError()
1833
1834 def denormalize_name(self, name: str) -> str:
1835 """convert the given name to a case insensitive identifier
1836 for the backend if it is an all-lowercase name.
1837
1838 This method is only used if the dialect defines
1839 requires_name_normalize=True.
1840
1841 """
1842 raise NotImplementedError()
1843
1844 def has_table(
1845 self,

Callers 9

has_tableMethod · 0.45
_prepare_filter_namesMethod · 0.45
get_multi_columnsMethod · 0.45
get_view_definitionMethod · 0.45
_purge_recyclebinFunction · 0.45
test_name_denormalizeMethod · 0.45
drop_tablesFunction · 0.45

Calls

no outgoing calls

Tested by 1

test_name_denormalizeMethod · 0.36