]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/mock_legacy_word_table.py
Merge pull request #3536 from lonvia/remove-php
[nominatim.git] / test / python / mock_legacy_word_table.py
index d1c523eb7d9a4c766f8d4057518c5c3945d91b52..d3f81a4db3948bcb95d267676e236d392987bf71 100644 (file)
@@ -68,7 +68,7 @@ class MockLegacyWordTable:
 
     def get_special(self):
         with self.conn.cursor() as cur:
-            cur.execute("""SELECT word_token, word, class, type, operator
+            cur.execute("""SELECT word_token, word, class as cls, type, operator
                            FROM word WHERE class != 'place'""")
             result = set((tuple(row) for row in cur))
             assert len(result) == cur.rowcount, "Word table has duplicates."