MCPcopy
hub / github.com/pandas-dev/pandas / Temporary

Class Temporary

pandas/tests/io/test_sql.py:3516–3520  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3514 Base = declarative_base()
3515
3516 class Temporary(Base):
3517 __tablename__ = "temp_test"
3518 __table_args__ = {"prefixes": ["TEMPORARY"]}
3519 id = Column(Integer, primary_key=True)
3520 spam = Column(Unicode(30), nullable=False)
3521
3522 with Session(conn) as session:
3523 with session.begin():

Callers 1

test_temporary_tableFunction · 0.85

Calls 1

ColumnClass · 0.85

Tested by 1

test_temporary_tableFunction · 0.68