Revision 7725
Added by Aaron Marcuse-Kubitza almost 12 years ago
schemas/py_functions.sql | ||
---|---|---|
84 | 84 |
ALTER FUNCTION py_functions._date(year text, month text, day text) OWNER TO bien; |
85 | 85 |
|
86 | 86 |
-- |
87 |
-- Name: _date(integer, integer, integer); Type: FUNCTION; Schema: py_functions; Owner: bien |
|
88 |
-- |
|
89 |
|
|
90 |
CREATE FUNCTION _date(year integer DEFAULT NULL::integer, month integer DEFAULT NULL::integer, day integer DEFAULT NULL::integer) RETURNS text |
|
91 |
LANGUAGE sql IMMUTABLE STRICT |
|
92 |
AS $_$ |
|
93 |
SELECT py_functions._date($1::text, $2::text, $3::text) |
|
94 |
$_$; |
|
95 |
|
|
96 |
|
|
97 |
ALTER FUNCTION py_functions._date(year integer, month integer, day integer) OWNER TO bien; |
|
98 |
|
|
99 |
-- |
|
87 | 100 |
-- Name: _dateRangeEnd(text); Type: FUNCTION; Schema: py_functions; Owner: bien |
88 | 101 |
-- |
89 | 102 |
|
Also available in: Unified diff
schemas/py_functions.sql: Added _date(year integer, month integer, day integer)