TimeInterval

PostgreSQL time interval isn't same with D std.datetime one. It is simple Duration. * Consists of: microseconds time, day count and month count. Libpq uses different represantation for time, but i store only in usecs format.

struct TimeInterval {
long time;
int day;
int month;
}

Meta