mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
7 lines
273 B
MySQL
7 lines
273 B
MySQL
|
DROP FUNCTION IF EXISTS public.function_null_row2;
|
||
|
|
||
|
CREATE OR REPLACE FUNCTION public.function_null_row2(z integer, x integer, y integer)
|
||
|
RETURNS TABLE(mvt bytea, key text) AS $$
|
||
|
SELECT NULL::bytea, NULL::text WHERE FALSE;
|
||
|
$$ LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE;
|