From: Sarah Hoffmann Date: Sun, 24 Apr 2016 14:05:10 +0000 (+0200) Subject: Merge pull request #436 from lonvia/remove-location-property-tables X-Git-Tag: v3.0.0~176 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/131527bdab6738baff679171c421ea7fa863e100?hp=a32f6c66b8c4c5c985f3ae71577404d76716d6e6 Merge pull request #436 from lonvia/remove-location-property-tables remove unused location_property_-partion- tables --- diff --git a/utils/setup.php b/utils/setup.php index f1855673..4a20d5dc 100755 --- a/utils/setup.php +++ b/utils/setup.php @@ -217,7 +217,7 @@ echo "Functions\n"; $bDidSomething = true; if (!file_exists(CONST_InstallPath.'/module/nominatim.so')) fail("nominatim module not built"); - create_sql_functions(); + create_sql_functions($aCMDResult); } if ($aCMDResult['create-tables'] || $aCMDResult['all']) @@ -243,7 +243,7 @@ // re-run the functions echo "Functions\n"; - create_sql_functions(); + create_sql_functions($aCMDResult); } if ($aCMDResult['create-partition-tables'] || $aCMDResult['all']) @@ -900,7 +900,7 @@ return $sSql; } - function create_sql_functions() + function create_sql_functions($aCMDResult) { $sTemplate = file_get_contents(CONST_BasePath.'/sql/functions.sql'); $sTemplate = str_replace('{modulepath}', CONST_InstallPath.'/module', $sTemplate);