mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-25 19:35:02 +03:00
d2bd6aa78d
Replaces various hand-crafted replacements of varying format with a single Jinja2 templating mechanism. Allows full access to configuration if necessary.
21 lines
599 B
SQL
21 lines
599 B
SQL
{% include('functions/utils.sql') %}
|
|
{% include('functions/normalization.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') %}
|