File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -908,22 +908,22 @@ $ <userinput>cal 9 1752</userinput>
908
908
<para>
909
909
This definition does, however, provide a way to obtain the astronomical
910
910
definition when you need it: do the arithmetic in time
911
- zone <literal>UTC- 12</literal>. For example,
911
+ zone <literal>UTC+ 12</literal>. For example,
912
912
<programlisting>
913
- => SELECT extract(julian from '2021-06-23 7:00:00-04'::timestamptz at time zone 'UTC- 12');
913
+ => SELECT extract(julian from '2021-06-23 7:00:00-04'::timestamptz at time zone 'UTC+ 12');
914
914
extract
915
915
------------------------------
916
- 2459389 .95833333333333333333
916
+ 2459388 .95833333333333333333
917
917
(1 row)
918
- => SELECT extract(julian from '2021-06-23 8:00:00-04'::timestamptz at time zone 'UTC- 12');
918
+ => SELECT extract(julian from '2021-06-23 8:00:00-04'::timestamptz at time zone 'UTC+ 12');
919
919
extract
920
920
--------------------------------------
921
- 2459390 .0000000000000000000000000000
921
+ 2459389 .0000000000000000000000000000
922
922
(1 row)
923
- => SELECT extract(julian from date '2021-06-24 ');
923
+ => SELECT extract(julian from date '2021-06-23 ');
924
924
extract
925
925
---------
926
- 2459390
926
+ 2459389
927
927
(1 row)
928
928
</programlisting>
929
929
</para>
You can’t perform that action at this time.
0 commit comments