view schema/updates/1006/01.fix-search-only-valid-bottleneck.sql @ 4793:d6d73ca5496a

client: import_overview: improve implementation of exporting logs * adjust using of end point * delete the generation of csv in front end
author Fadi Abbud <fadi.abbud@intevation.de>
date Fri, 25 Oct 2019 15:09:10 +0200
parents b10f210af325
children
line wrap: on
line source

CREATE OR REPLACE FUNCTION search_bottlenecks(search_string text) RETURNS jsonb
  LANGUAGE plpgsql STABLE PARALLEL SAFE
  AS $$
DECLARE
  _result jsonb;
BEGIN
  SELECT COALESCE(json_agg(r),'[]')
    INTO _result
    FROM (SELECT objnam AS name,
                 ST_AsGeoJSON(ST_Envelope(area::geometry))::json AS geom,
                 'bottleneck' AS type
            FROM waterway.bottlenecks
            WHERE objnam ILIKE '%' || search_string || '%'
              AND validity @> now()
          ORDER BY name) r;
  RETURN _result;
END;
$$;