X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c62957323038f53d3b1ed6cd23b0ce473e46650e..86d5209118bdbacaac817b8f8a6ab7a6c769bdc7:/utils/setup.php?ds=inline diff --git a/utils/setup.php b/utils/setup.php index 5ec41000..6f1ce41d 100755 --- a/utils/setup.php +++ b/utils/setup.php @@ -360,13 +360,13 @@ if ($aCMDResult['load-data'] || $aCMDResult['all']) { } echo "Load Data\n"; + $sColumns = 'osm_type, osm_id, class, type, name, admin_level, address, extratags, geometry'; + $aDBInstances = array(); $iLoadThreads = max(1, $iInstances - 1); for ($i = 0; $i < $iLoadThreads; $i++) { $aDBInstances[$i] =& getDB(true); - $sSQL = 'insert into placex (osm_type, osm_id, class, type, name, admin_level, '; - $sSQL .= ' address, extratags, geometry) '; - $sSQL .= 'select * from place where osm_id % '.$iLoadThreads.' = '.$i; + $sSQL = "INSERT INTO placex ($sColumns) SELECT $sColumns FROM place WHERE osm_id % $iLoadThreads = $i"; $sSQL .= " and not (class='place' and type='houses' and osm_type='W'"; $sSQL .= " and ST_GeometryType(geometry) = 'ST_LineString')"; $sSQL .= " and ST_IsValid(geometry)";