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

Method _is_sys_table

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

Source from the content-addressed store, hash-verified

2971 return ReflectionDefaults.indexes()
2972
2973 def _is_sys_table(self, table_name):
2974 return table_name in {
2975 "sqlite_schema",
2976 "sqlite_master",
2977 "sqlite_temp_schema",
2978 "sqlite_temp_master",
2979 }
2980
2981 @reflection.cache
2982 def _get_table_sql(self, connection, table_name, schema=None, **kw):

Callers 1

_get_table_sqlMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected