mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 21:31:49 +03:00
8 lines
227 B
MySQL
8 lines
227 B
MySQL
|
DROP FUNCTION IF EXISTS public.function_null;
|
||
|
|
||
|
CREATE OR REPLACE FUNCTION public.function_null(z integer, x integer, y integer) RETURNS bytea AS $$
|
||
|
BEGIN
|
||
|
RETURN null;
|
||
|
END
|
||
|
$$ LANGUAGE plpgsql IMMUTABLE STRICT PARALLEL SAFE;
|