MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _is_sys_table

Method _is_sys_table

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

Source from the content-addressed store, hash-verified

3002 return ReflectionDefaults.indexes()
3003
3004 def _is_sys_table(self, table_name):
3005 return table_name in {
3006 "sqlite_schema",
3007 "sqlite_master",
3008 "sqlite_temp_schema",
3009 "sqlite_temp_master",
3010 }
3011
3012 @reflection.cache
3013 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