]> git.openstreetmap.org Git - nominatim.git/commitdiff
wikipedia: create all language pagelinkcount tables before querying them
authormarc tobias <mtmail@gmx.net>
Sat, 14 Dec 2019 19:36:54 +0000 (20:36 +0100)
committermarc tobias <mtmail@gmx.net>
Sat, 14 Dec 2019 19:36:54 +0000 (20:36 +0100)
data-sources/wikipedia-wikidata/import_wikipedia.sh

index 8b8ba52a52f80f9c57d8a86a38720be2426ae81e..9cc9b1dfc7900ce9da9ac643ef48d34bead3f91f 100755 (executable)
@@ -52,6 +52,10 @@ do
     echo "insert into wikipedia_redirect select '${i}',page_title,rd_title from ${i}redirect join ${i}page on (rd_from = page_id) where page_namespace = 0 and rd_namespace = 0;" | psqlcmd
     echo "alter table ${i}pagelinkcount add column othercount integer;" | psqlcmd
     echo "update ${i}pagelinkcount set othercount = 0;" | psqlcmd
+done
+
+for i in "${language[@]}"
+do
     for j in "${language[@]}"
     do
         echo "update ${i}pagelinkcount set othercount = ${i}pagelinkcount.othercount + x.count from (select page_title as title,count from ${i}langlinks join ${i}page on (ll_from = page_id) join ${j}pagelinkcount on (ll_lang = '${j}' and ll_title = title)) as x where x.title = ${i}pagelinkcount.title;" | psqlcmd