mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-22 21:28:10 +03:00
27 lines
768 B
SQL
27 lines
768 B
SQL
-- SPDX-License-Identifier: GPL-2.0-only
|
|
--
|
|
-- This file is part of Nominatim. (https://nominatim.org)
|
|
--
|
|
-- Copyright (C) 2022 by the Nominatim developer community.
|
|
-- For a full list of authors see the git log.
|
|
|
|
{% include('functions/utils.sql') %}
|
|
{% include('functions/ranking.sql') %}
|
|
{% include('functions/importance.sql') %}
|
|
{% include('functions/address_lookup.sql') %}
|
|
{% include('functions/interpolation.sql') %}
|
|
|
|
{% if 'place' in db.tables %}
|
|
{% include 'functions/place_triggers.sql' %}
|
|
{% endif %}
|
|
|
|
{% if 'placex' in db.tables %}
|
|
{% include 'functions/placex_triggers.sql' %}
|
|
{% endif %}
|
|
|
|
{% if 'location_postcode' in db.tables %}
|
|
{% include 'functions/postcode_triggers.sql' %}
|
|
{% endif %}
|
|
|
|
{% include('functions/partition-functions.sql') %}
|