Revision 7104
Added by Aaron Marcuse-Kubitza about 12 years ago
schemas/functions.sql | ||
---|---|---|
303 | 303 |
|
304 | 304 |
|
305 | 305 |
-- |
306 |
-- Name: _now(); Type: FUNCTION; Schema: functions; Owner: - |
|
307 |
-- |
|
308 |
|
|
309 |
CREATE FUNCTION _now() RETURNS timestamp with time zone |
|
310 |
LANGUAGE sql STABLE |
|
311 |
AS $$ |
|
312 |
SELECT now() |
|
313 |
$$; |
|
314 |
|
|
315 |
|
|
316 |
-- |
|
306 | 317 |
-- Name: _nullIf(anyelement, text, datatype); Type: FUNCTION; Schema: functions; Owner: - |
307 | 318 |
-- |
308 | 319 |
|
Also available in: Unified diff
schemas/functions.sql: Added _now()