Revision 6316
Added by Aaron Marcuse-Kubitza about 12 years ago
schemas/functions.sql | ||
---|---|---|
253 | 253 |
|
254 | 254 |
|
255 | 255 |
-- |
256 |
-- Name: _not(boolean); Type: FUNCTION; Schema: functions; Owner: - |
|
257 |
-- |
|
258 |
|
|
259 |
CREATE FUNCTION _not(value boolean) RETURNS boolean |
|
260 |
LANGUAGE sql IMMUTABLE STRICT |
|
261 |
AS $_$ |
|
262 |
SELECT NOT $1 |
|
263 |
$_$; |
|
264 |
|
|
265 |
|
|
266 |
-- |
|
256 | 267 |
-- Name: _nullIf(anyelement, text, datatype); Type: FUNCTION; Schema: functions; Owner: - |
257 | 268 |
-- |
258 | 269 |
|
Also available in: Unified diff
schemas/functions.sql: Added _not()