File tree Expand file tree Collapse file tree 2 files changed +0
-49
lines changed
Expand file tree Collapse file tree 2 files changed +0
-49
lines changed Original file line number Diff line number Diff line change @@ -639,54 +639,12 @@ SELECT (timestamp with time zone 'today' = (timestamp with time zone 'tomorrow'
639639 t
640640(1 row)
641641
642- SELECT (timestamp with time zone 'today 10:30-08' = timestamptz(date 'today', time with time zone '10:30 -08')) as "True";
643- True
644- ------
645- t
646- (1 row)
647-
648- SELECT (timestamp with time zone '10:30-08 today' = timestamptz(date 'today', time with time zone '10:30 -08')) as "True";
649- True
650- ------
651- t
652- (1 row)
653-
654642SELECT (timestamp with time zone 'tomorrow' = (timestamp with time zone 'yesterday' + interval '2 days')) as "True";
655643 True
656644------
657645 t
658646(1 row)
659647
660- SELECT (timestamp with time zone 'tomorrow 10:30-08' = (timestamp with time zone 'today 10:30-08' + interval '1 day')) as "True";
661- True
662- ------
663- t
664- (1 row)
665-
666- SELECT (timestamp with time zone '10:30-08 tomorrow' = (timestamp with time zone 'today 10:30-08' + interval '1 day')) as "True";
667- True
668- ------
669- t
670- (1 row)
671-
672- SELECT (timestamp with time zone 'yesterday 12:34:56-7' = timestamptz(date 'yesterday', time with time zone '12:34:56-7')) as "True";
673- True
674- ------
675- t
676- (1 row)
677-
678- SELECT (timestamp with time zone '12:34:56 yesterday -7' = timestamptz(date 'yesterday', time with time zone '12:34:56-7')) as "True";
679- True
680- ------
681- t
682- (1 row)
683-
684- SELECT (timestamp with time zone '12:34:56-7 yesterday' = timestamptz(date 'yesterday', time with time zone '12:34:56-7')) as "True";
685- True
686- ------
687- t
688- (1 row)
689-
690648SELECT (timestamp with time zone 'tomorrow' > 'now') as "True";
691649 True
692650------
Original file line number Diff line number Diff line change @@ -118,14 +118,7 @@ SELECT timestamp with time zone '1999-12-01' + interval '1 month - 1 second' AS
118118
119119SELECT (timestamp with time zone ' today' = (timestamp with time zone ' yesterday' + interval ' 1 day' )) as " True" ;
120120SELECT (timestamp with time zone ' today' = (timestamp with time zone ' tomorrow' - interval ' 1 day' )) as " True" ;
121- SELECT (timestamp with time zone ' today 10:30-08' = timestamptz (date ' today' , time with time zone ' 10:30 -08' )) as " True" ;
122- SELECT (timestamp with time zone ' 10:30-08 today' = timestamptz (date ' today' , time with time zone ' 10:30 -08' )) as " True" ;
123121SELECT (timestamp with time zone ' tomorrow' = (timestamp with time zone ' yesterday' + interval ' 2 days' )) as " True" ;
124- SELECT (timestamp with time zone ' tomorrow 10:30-08' = (timestamp with time zone ' today 10:30-08' + interval ' 1 day' )) as " True" ;
125- SELECT (timestamp with time zone ' 10:30-08 tomorrow' = (timestamp with time zone ' today 10:30-08' + interval ' 1 day' )) as " True" ;
126- SELECT (timestamp with time zone ' yesterday 12:34:56-7' = timestamptz (date ' yesterday' , time with time zone ' 12:34:56-7' )) as " True" ;
127- SELECT (timestamp with time zone ' 12:34:56 yesterday -7' = timestamptz (date ' yesterday' , time with time zone ' 12:34:56-7' )) as " True" ;
128- SELECT (timestamp with time zone ' 12:34:56-7 yesterday' = timestamptz (date ' yesterday' , time with time zone ' 12:34:56-7' )) as " True" ;
129122SELECT (timestamp with time zone ' tomorrow' > ' now' ) as " True" ;
130123
131124-- timestamp with time zone, interval arithmetic around DST change
You can’t perform that action at this time.
0 commit comments