[Python API] Reusing connection with islice() limit #35
-
When using python api to compare a list of tables, I'm making the connection outside the loop and then reusing it for all the tables I need to compare. Is this an expected behavior? Simplified version of the code:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
I think the scheduling is supposed to be lazy with a lookahead. If it is eager, then maybe it's a bug. I will look into it. |
Beta Was this translation helpful? Give feedback.
Thanks for letting me know. Most likely it is caused by this commit: 0afbe65
I tried to fix it in this PR: #40
Could you give it a try and let me know if it solved the problem for you?
If not, I will revert the entire commit, and that should fix it for sure (if I'm not wrong).