]> git.openstreetmap.org Git - nominatim.git/commitdiff
ignore words without id for status
authorSarah Hoffmann <lonvia@denofr.de>
Sun, 15 Aug 2021 15:49:22 +0000 (17:49 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sun, 15 Aug 2021 19:59:36 +0000 (21:59 +0200)
lib-php/tokenizer/legacy_icu_tokenizer.php

index 3751e821837d4cfb9acb52f7fb3f0e9ebf000465..4e297954ac457159cab63b666fde905cc293e198 100644 (file)
@@ -19,7 +19,7 @@ class Tokenizer
 
     public function checkStatus()
     {
-        $sSQL = 'SELECT word_id FROM word limit 1';
+        $sSQL = 'SELECT word_id FROM word WHERE word_id is not null limit 1';
         $iWordID = $this->oDB->getOne($sSQL);
         if ($iWordID === false) {
             throw new \Exception('Query failed', 703);