tconbeer / harlequin

The SQL IDE for Your Terminal.
https://harlequin.sh
MIT License
3.55k stars 77 forks source link

Add number separators to query history results #448

Closed code-master-ajay closed 7 months ago

code-master-ajay commented 7 months ago

This fixes #437

The previous code was :

f"{self.result_row_count:n} " 

which is replaced by :

f"{self.result_row_count:,} " 

this will make sure there are separators in the numbers, example given below:

harlequin

tconbeer commented 7 months ago

Thank you!!