I was doing some testing with rSpec, when I wanted to test if a job gets queued at the correct time. For that I queued the task at 2.hours.from_now and then checked it with .at(2.hours.from_now). I quickly realised my mistake and changed that to a variable which fixed the test, but I realised that the test checked for at xxxx-xx-xx xx:xx:xx 721891/1048576 +xxxx. Now I am left wondering what the 721891/1048576 exactly does. I found out that 1048576 byte are one Mebibyte. Is it possible that the fraction at the end simply is further precision of the moment, but instead of x/1048576 it shows 1048576 due to the precision being 2^20?
Additional information: The used db is psql