You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the progress handler, check to see if the deadline has been hit
in a nested query, the deadline is whichever is sooner, the outside deadline or the inside deadline
I would be wise to implement #502 for the progress handler so multiple can co-exist.
Getting a monotonic clock is platform dependent. For python 3.13 there is an official API. For earlier releases the function py_get_monotonic_clock in the Python source Python/pytime.c has per platform headers and platform calls.
The text was updated successfully, but these errors were encountered:
It would be nice to execute a query with row count and time limits. Row count is straight forward with an iterator wrapper.
For time limits it may be possible by doing something like:
I would be wise to implement #502 for the progress handler so multiple can co-exist.
Getting a monotonic clock is platform dependent. For python 3.13 there is an official API. For earlier releases the function
py_get_monotonic_clock
in the Python source Python/pytime.c has per platform headers and platform calls.The text was updated successfully, but these errors were encountered: