-
-
Notifications
You must be signed in to change notification settings - Fork 214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect Progress Info #163
Comments
Hi. Can you provide minimal code/SQL example for reproducing the problem? |
I used example from docs executing query with progress bar: https://clickhouse-driver.readthedocs.io/en/latest/quickstart.html?highlight=progress#selecting-data-with-progress-statistics python version: 3.6.5 My python code:
And i got result:
|
There was a bug with reading big numbers. It will work if you lower number Fix is already published in master branch. You can install package directly from github. Output after fix
|
Thank you, now function works fine! 👍 |
Hello, thank you very much for good library!
I found bug with api method "execute_with_progress", my query iterator show me incorrect total_rows value.
Progress:
num_rows: 26581978 total_rows: -1140508263
num_rows: 58067973 total_rows: -1140508263
num_rows: 90825722 total_rows: -1140508263
....
num_rows: 3105694729 total_rows: -1140508263
num_rows: 3150702347 total_rows: -1140508263
num_rows: 3154441799 total_rows: -1140508263
Result:
progress.rows: 3154441799
progress.total_rows: -1140508263
The text was updated successfully, but these errors were encountered: