]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge pull request #436 from lonvia/remove-location-property-tables
authorSarah Hoffmann <lonvia@denofr.de>
Sun, 24 Apr 2016 14:05:10 +0000 (16:05 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sun, 24 Apr 2016 14:05:10 +0000 (16:05 +0200)
remove unused location_property_-partion- tables

utils/setup.php

index f18556738b6c698438862136e0bedf859e661784..4a20d5dc5df570286cc18f82b670ec0986337ad2 100755 (executable)
                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'])
 
                // re-run the functions
                echo "Functions\n";
-               create_sql_functions();
+               create_sql_functions($aCMDResult);
        }
 
        if ($aCMDResult['create-partition-tables'] || $aCMDResult['all'])
                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);