Fix TestIntervalNormalize

batch-wip
Jack Christensen 2017-05-20 08:39:53 -05:00
parent 6529b91111
commit aa2bc93e31
1 changed files with 7 additions and 7 deletions

View File

@ -33,31 +33,31 @@ func TestIntervalNormalize(t *testing.T) {
testutil.TestSuccessfulNormalize(t, []testutil.NormalizeTest{
{
SQL: "select '1 second'::interval",
Value: pgtype.Interval{Microseconds: 1000000, Status: pgtype.Present},
Value: &pgtype.Interval{Microseconds: 1000000, Status: pgtype.Present},
},
{
SQL: "select '1.000001 second'::interval",
Value: pgtype.Interval{Microseconds: 1000001, Status: pgtype.Present},
Value: &pgtype.Interval{Microseconds: 1000001, Status: pgtype.Present},
},
{
SQL: "select '34223 hours'::interval",
Value: pgtype.Interval{Microseconds: 123202800000000, Status: pgtype.Present},
Value: &pgtype.Interval{Microseconds: 123202800000000, Status: pgtype.Present},
},
{
SQL: "select '1 day'::interval",
Value: pgtype.Interval{Days: 1, Status: pgtype.Present},
Value: &pgtype.Interval{Days: 1, Status: pgtype.Present},
},
{
SQL: "select '1 month'::interval",
Value: pgtype.Interval{Months: 1, Status: pgtype.Present},
Value: &pgtype.Interval{Months: 1, Status: pgtype.Present},
},
{
SQL: "select '1 year'::interval",
Value: pgtype.Interval{Months: 12, Status: pgtype.Present},
Value: &pgtype.Interval{Months: 12, Status: pgtype.Present},
},
{
SQL: "select '-13 mon'::interval",
Value: pgtype.Interval{Months: -13, Status: pgtype.Present},
Value: &pgtype.Interval{Months: -13, Status: pgtype.Present},
},
})
}