]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/cmd.php
Always ignore continents for addresses
[nominatim.git] / lib / cmd.php
index 9efe5653b735ca45dd12a62da471d824436dc4ee..44923618723636b86aec3c17f9f3ae4df3742e83 100644 (file)
@@ -185,6 +185,10 @@ function runSQLScript($sScript, $bfatal = true, $bVerbose = false, $bIgnoreError
         fail('unable to start pgsql');
     }
 
+    if (!$bVerbose) {
+        fwrite($ahPipes[0], 'set client_min_messages to WARNING;');
+    }
+
     while (strlen($sScript)) {
         $iWritten = fwrite($ahPipes[0], $sScript);
         if ($iWritten <= 0) break;