Skip to content

Commit

Permalink
Fix mysql advanced sync rule execute error (#3044)
Browse files Browse the repository at this point in the history
Co-authored-by: Li Junjie <[email protected]>
Co-authored-by: Sean Story <[email protected]>
  • Loading branch information
3 people authored Dec 18, 2024
1 parent ec1ab8a commit 64289ce
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 64289ce

Please sign in to comment.