Skip to content

Commit

Permalink
Fix mysql advanced sync rule execute error
Browse files Browse the repository at this point in the history
  • Loading branch information
junjie.li committed Dec 17, 2024
1 parent e304bd2 commit a05591a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connectors/sources/mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ async def _yield_docs_custom_query(self, client, tables, query, id_columns):
)
return

async for row in client.yield_rows_for_query(query):
async for row in client.yield_rows_for_query(query, primary_key_columns):
yield row2doc(
row=row,
column_names=column_names,
Expand Down

0 comments on commit a05591a

Please sign in to comment.