MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / denormalize_name

Method denormalize_name

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

1863 raise NotImplementedError()
1864
1865 def denormalize_name(self, name: str) -> str:
1866 """convert the given name to a case insensitive identifier
1867 for the backend if it is an all-lowercase name.
1868
1869 This method is only used if the dialect defines
1870 requires_name_normalize=True.
1871
1872 """
1873 raise NotImplementedError()
1874
1875 def has_table(
1876 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