We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc07624 commit d0ab37aCopy full SHA for d0ab37a
1 file changed
backend/apps/datasource/crud/table.py
@@ -38,7 +38,7 @@ def run_fill_empty_table_embedding(session: Session):
38
SQLBotLogUtil.info('get tables')
39
stmt = select(CoreTable.id).where(and_(CoreTable.embedding.is_(None)))
40
results = session.execute(stmt).scalars().all()
41
- SQLBotLogUtil.info(json.dumps(results))
+ SQLBotLogUtil.info(results)
42
43
save_table_embedding(session, results)
44
0 commit comments