Constructors for interval, timestamp, timestamptz
Alvaro Herrera <alvherre@alvh.no-ip.org>
Constructors for interval, timestamp, timestamptz Author: Pavel Stěhule, editorialized somewhat by Álvaro Herrera Reviewed-by: Tomáš Vondra, Marko Tiikkaja With input from Fabrízio de Royes Mello, Jim Nasby
Files
| Path | Change | +/− |
|---|---|---|
| doc/src/sgml/func.sgml | modified | +77 −0 |
| src/backend/catalog/system_views.sql | modified | +9 −0 |
| src/backend/utils/adt/datetime.c | modified | +4 −2 |
| src/backend/utils/adt/timestamp.c | modified | +264 −0 |
| src/include/catalog/catversion.h | modified | +1 −1 |
| src/include/catalog/pg_proc.h | modified | +9 −1 |
| src/include/utils/datetime.h | modified | +1 −0 |
| src/include/utils/timestamp.h | modified | +5 −0 |
| src/test/regress/expected/interval.out | modified | +45 −0 |
| src/test/regress/expected/timestamp.out | modified | +7 −0 |
| src/test/regress/expected/timestamptz.out | modified | +114 −0 |
| src/test/regress/sql/interval.sql | modified | +14 −0 |
| src/test/regress/sql/timestamp.sql | modified | +3 −0 |
| src/test/regress/sql/timestamptz.sql | modified | +37 −0 |