]> git.openstreetmap.org Git - nominatim.git/commitdiff
formatting: avoid long lines
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 20 Nov 2019 09:57:36 +0000 (10:57 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 20 Nov 2019 09:57:36 +0000 (10:57 +0100)
utils/update.php

index 735f4638a7a8a59f758f3db9783a0c647f8fead0..4317367a42ee2772386eb73bbe2784082b3f5741 100644 (file)
@@ -327,8 +327,13 @@ if ($aResult['recompute-importance']) {
     $oDB->connect();
 
     $sSQL = 'ALTER TABLE placex DISABLE TRIGGER ALL;';
-    $sSQL .= 'UPDATE placex SET (wikipedia, importance) = (SELECT wikipedia, importance FROM compute_importance(extratags, country_code, osm_type, osm_id));';
-    $sSQL .= 'UPDATE placex s SET wikipedia = d.wikipedia, importance = d.importance FROM placex d WHERE s.place_id = d.linked_place_id and d.wikipedia is not null and (s.wikipedia is null or s.importance < d.importance);';
+    $sSQL .= 'UPDATE placex SET (wikipedia, importance) =';
+    $sSQL .= '   (SELECT wikipedia, importance';
+    $sSQL .= '    FROM compute_importance(extratags, country_code, osm_type, osm_id));';
+    $sSQL .= 'UPDATE placex s SET wikipedia = d.wikipedia, importance = d.importance';
+    $sSQL .= ' FROM placex d';
+    $sSQL .= ' WHERE s.place_id = d.linked_place_id and d.wikipedia is not null';
+    $sSQL .= '       and (s.wikipedia is null or s.importance < d.importance);';
     $sSQL .= 'ALTER TABLE placex ENABLE TRIGGER ALL;';
     $oDB->exec($sSQL);
 }