blob: 3df738d68ac034c991285cfa80dd312306f278a9 (
plain) (
blame)
1
2
3
4
5
6
7
|
/* postgres can not */
select +Interval("P1D");
select -Interval("P1D");
select +Yql::Just(Interval("P1D"));
select -Yql::Just(Interval("P1D"));
select +Yql::Nothing(ParseType("Interval?"));
select -Yql::Nothing(ParseType("Interval?"));
|