Skip to content

Commit

Permalink
Merge pull request #4648 from sysown/v2.7-4646
Browse files Browse the repository at this point in the history
Fix bug #4646
  • Loading branch information
renecannao authored Sep 20, 2024
2 parents 2d6c897 + d867883 commit d164bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ProxySQL_Admin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10376,7 +10376,7 @@ int ProxySQL_Admin::stats___save_mysql_query_digest_to_sqlite(
SQLite3_row *row = resultset ? resultset->rows[i] : NULL;
char digest_hex_str[20]; // 2+sizeof(unsigned long long)*2+2
if (!resultset) {
sprintf(digest_hex_str, "0x%16llX", (long long unsigned int)qds->digest);
sprintf(digest_hex_str, "0x%016llX", (long long unsigned int)qds->digest);
}
int idx=row_idx%32;
if (row_idx<max_bulk_row_idx) { // bulk
Expand Down

0 comments on commit d164bd1

Please sign in to comment.