MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/dialects/mssql/base.py:2908–2914  ·  view source on GitHub ↗
(self, dialect)

Source from the content-addressed store, hash-verified

2906 reserved_words = RESERVED_WORDS
2907
2908 def __init__(self, dialect):
2909 super().__init__(
2910 dialect,
2911 initial_quote="[",
2912 final_quote="]",
2913 quote_case_sensitive_collations=False,
2914 )
2915
2916 def _escape_identifier(self, value):
2917 return value.replace("]", "]]")

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected