Revision 2938
Added by Aaron Marcuse-Kubitza over 12 years ago
schemas/functions.sql | ||
---|---|---|
128 | 128 |
|
129 | 129 |
|
130 | 130 |
-- |
131 |
-- Name: ensure_not_null(text); Type: FUNCTION; Schema: functions; Owner: - |
|
132 |
-- |
|
133 |
|
|
134 |
CREATE FUNCTION ensure_not_null(value text) RETURNS text |
|
135 |
LANGUAGE sql IMMUTABLE |
|
136 |
AS $_$ |
|
137 |
SELECT COALESCE($1, E'\\N'); |
|
138 |
$_$; |
|
139 |
|
|
140 |
|
|
141 |
-- |
|
142 | 131 |
-- Name: join_strs_(text, text, text); Type: FUNCTION; Schema: functions; Owner: - |
143 | 132 |
-- |
144 | 133 |
|
Also available in: Unified diff
schemas/functions.sql: Removed no longer used ensure_not_null()