X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/f3ba358d50ac909042dee20f409c7508bde3ab39..ac116980ac78b74dbc1e0ae7ff2d329d7e581ba5:/utils/check_import_finished.php diff --git a/utils/check_import_finished.php b/utils/check_import_finished.php index c6ccb67b..1eb012d4 100755 --- a/utils/check_import_finished.php +++ b/utils/check_import_finished.php @@ -1,6 +1,6 @@ "\033[92m", @@ -20,8 +20,15 @@ $print_fail = function ($message = 'Failed') use ($term_colors) { $oDB = new Nominatim\DB; +function isReverseOnlyInstallation() +{ + global $oDB; + return !$oDB->tableExists('search_name'); +} + + echo 'Checking database got created ... '; -if ($oDB->databaseExists()) { +if ($oDB->checkConnection()) { $print_success(); } else { $print_fail(); @@ -99,7 +106,6 @@ $aExpectedIndices = array( 'idx_placex_rank_address', 'idx_placex_pendingsector', 'idx_placex_parent_place_id', - 'idx_placex_geometry_reverse_lookuppoint', 'idx_placex_geometry_reverse_lookuppolygon', 'idx_placex_geometry_reverse_placenode', 'idx_location_area_country_place_id', @@ -107,13 +113,16 @@ $aExpectedIndices = array( 'idx_osmline_parent_osm_id', 'idx_place_osm_unique', 'idx_postcode_id', - 'idx_postcode_postcode', - - // sql/indices_search.src.sql - 'idx_search_name_nameaddress_vector', - 'idx_search_name_name_vector', - 'idx_search_name_centroid' + 'idx_postcode_postcode' ); +if (!isReverseOnlyInstallation()) { + $aExpectedIndices = array_merge($aExpectedIndices, array( + // sql/indices_search.src.sql + 'idx_search_name_nameaddress_vector', + 'idx_search_name_name_vector', + 'idx_search_name_centroid' + )); +} foreach ($aExpectedIndices as $sExpectedIndex) { echo "Checking index $sExpectedIndex ... "; @@ -123,7 +132,8 @@ foreach ($aExpectedIndices as $sExpectedIndex) { $print_fail(); echo <<< END Hints: - * Rerun the setup.php --create-search-indices step + * Run './utils/setup.php --create-search-indices --ignore-errors' to + create missing indices. END; exit(1);