@@ -416,15 +416,15 @@ QUERY: CREATE OPERATOR <% (
416
416
commutator = >=%
417
417
);
418
418
QUERY: CREATE OPERATOR @#@ (
419
- rightarg = int4, -- left unary
419
+ rightarg = int4,
420
420
procedure = int4fac
421
421
);
422
422
QUERY: CREATE OPERATOR #@# (
423
- leftarg = int4, -- right unary
423
+ leftarg = int4,
424
424
procedure = int4fac
425
425
);
426
426
QUERY: CREATE OPERATOR #%# (
427
- leftarg = int4, -- right unary
427
+ leftarg = int4,
428
428
procedure = int4fac
429
429
);
430
430
QUERY: CREATE VIEW street AS
@@ -799,7 +799,7 @@ six|f1
799
799
(6 rows)
800
800
801
801
QUERY: SELECT '' AS five, ABSTIME_TBL.*
802
- WHERE (ABSTIME_TBL.f1 + '@ 3 year'::reltime) -- +3 years
802
+ WHERE (ABSTIME_TBL.f1 + '@ 3 year'::reltime)
803
803
< 'Jan 14 14:00:00 1977'::abstime;
804
804
five|f1
805
805
----+----------------------------
@@ -811,7 +811,7 @@ five|f1
811
811
(5 rows)
812
812
813
813
QUERY: SELECT '' AS five, ABSTIME_TBL.*
814
- WHERE (ABSTIME_TBL.f1 + '@ 3 year ago'::reltime) -- -3 years
814
+ WHERE (ABSTIME_TBL.f1 + '@ 3 year ago'::reltime)
815
815
< 'Jan 14 14:00:00 1971'::abstime;
816
816
five|f1
817
817
----+----------------------------
@@ -823,7 +823,7 @@ five|f1
823
823
(5 rows)
824
824
825
825
QUERY: SELECT '' AS five, ABSTIME_TBL.*
826
- WHERE (ABSTIME_TBL.f1 - '@ 3 year'::reltime) -- -(+3) years
826
+ WHERE (ABSTIME_TBL.f1 - '@ 3 year'::reltime)
827
827
< 'Jan 14 14:00:00 1971'::abstime;
828
828
five|f1
829
829
----+----------------------------
@@ -835,7 +835,7 @@ five|f1
835
835
(5 rows)
836
836
837
837
QUERY: SELECT '' AS five, ABSTIME_TBL.*
838
- WHERE (ABSTIME_TBL.f1 - '@ 3 year ago'::reltime) -- -(-3) years
838
+ WHERE (ABSTIME_TBL.f1 - '@ 3 year ago'::reltime)
839
839
< 'Jan 14 14:00:00 1977'::abstime;
840
840
five|f1
841
841
----+----------------------------
0 commit comments