MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / AbstractFoo

Class AbstractFoo

test/ext/test_mutable.py:1251–1259  ·  test/ext/test_mutable.py::MutableColumnCopyJSONTest.AbstractFoo

Source from the content-addressed store, hash-verified

1249 Base = declarative_base(metadata=metadata)
1250
1251 class AbstractFoo(Base):
1252 __abstract__ = True
1253
1254 id = Column(
1255 Integer, primary_key=True, test_needs_autoincrement=True
1256 )
1257 data = Column(MutableDict.as_mutable(JSONEncodedDict))
1258 non_mutable_data = Column(JSONEncodedDict)
1259 unrelated_data = Column(String(50))
1260
1261 class Foo(AbstractFoo):
1262 __tablename__ = class="st">"foo"

Callers

nothing calls this directly

Calls 3

ColumnClass · 0.90
StringClass · 0.90
as_mutableMethod · 0.80

Tested by

no test coverage detected