Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ _escape_identifier
Method
_escape_identifier
test/sql/test_quote.py:889–890 ·
view source on GitHub ↗
(self, value)
Source
from the content-addressed store, hash-verified
887
super().__init__(dialect, initial_quote=
"`"
, final_quote=
"`"
)
888
889
def
_escape_identifier(self, value):
890
return
value.replace(
"`"
,
"``"
)
891
892
def
_unescape_identifier(self, value):
893
return
value.replace(
"``"
,
"`"
)
Callers
nothing calls this directly
Calls
1
replace
Method · 0.45
Tested by
no test coverage detected