Subject: | parse_interval will not parse '-100:33:00' |
Hi,
I can't seem to get parse_interval to parse negative formats, for example:
#!/usr/bin/perl
use strict;
use warnings;
use DateTime::Format::Pg;
print DateTime::Format::Pg->parse_interval('-100:33:00');
Gives:
Invalid interval string at test.pl line 6
-100:33:00 is an interval returned from one of our Pg functions.
Thanks,
Gavin.