def test_type_reflection(self, engine):
reflected_metadata = sa.schema.MetaData()
table = sa.schema.Table(
'user',
reflected_metadata,
autoload=True,
autoload_with=engine
)
assert isinstance(table.c['search_index'].type, TSVECTOR)
test_tsvector.py 文件源码
python
阅读 21
收藏 0
点赞 0
评论 0
评论列表
文章目录