MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _format_schema

Method _format_schema

lib/sqlalchemy/dialects/sqlite/base.py:2279–2285  ·  view source on GitHub ↗
(self, schema, table_name)

Source from the content-addressed store, hash-verified

2277 return [db[1] for db in dl if db[1] != "temp"]
2278
2279 def _format_schema(self, schema, table_name):
2280 if schema is not None:
2281 qschema = self.identifier_preparer.quote_identifier(schema)
2282 name = f"{qschema}.{table_name}"
2283 else:
2284 name = table_name
2285 return name
2286
2287 def _sqlite_main_query(
2288 self,

Callers 1

_sqlite_main_queryMethod · 0.95

Calls 1

quote_identifierMethod · 0.80

Tested by

no test coverage detected