]> git.openstreetmap.org Git - nominatim.git/blob - lib-sql/functions.sql
remove SQL function for address lookup
[nominatim.git] / lib-sql / functions.sql
1 -- SPDX-License-Identifier: GPL-2.0-only
2 --
3 -- This file is part of Nominatim. (https://nominatim.org)
4 --
5 -- Copyright (C) 2022 by the Nominatim developer community.
6 -- For a full list of authors see the git log.
7
8 {% include('functions/utils.sql') %}
9 {% include('functions/ranking.sql') %}
10 {% include('functions/importance.sql') %}
11 {% include('functions/interpolation.sql') %}
12
13 {% if 'place' in db.tables %}
14     {% include 'functions/place_triggers.sql' %}
15 {% endif %}
16
17 {% if 'placex' in db.tables %}
18     {% include 'functions/placex_triggers.sql' %}
19 {% endif %}
20
21 {% if 'location_postcode' in db.tables %}
22     {% include 'functions/postcode_triggers.sql' %}
23 {% endif %}
24
25 {% include('functions/partition-functions.sql') %}