X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/500e6e687f2d8e87d0797fbd9373d84c7b24d628..270902bc8e1f6bedae948ab73500b9fed85510cc:/script/statistics?ds=inline diff --git a/script/statistics b/script/statistics index 50363dc32..3f0c433f2 100755 --- a/script/statistics +++ b/script/statistics @@ -20,8 +20,7 @@ begin node_count = Node.count(:conditions => "visible = true") segment_count = Segment.count(:conditions => "visible = true") way_count = Way.count(:conditions => "visible = true") - tagged_way_count = Way.count(:conditions => "current_ways.visible = true AND current_way_tags.k <> 'created_by'", - :joins => "INNER JOIN current_way_tags ON current_way_tags.id = current_ways.id") + tagged_way_count = Way.count(:conditions => "visible = true AND EXISTS (SELECT * FROM current_way_tags WHERE id = current_ways.id AND k <> 'created_by')") puts "
Number of users | #{user_count} | ||
GPX Files | Day | #{day_count} | |
---|---|---|---|
GPX Files | Week | #{week_count} | |
GPX Files | Month | #{month_count} | |
GPX Files | #{day_count} | #{week_count} | #{month_count} |
Nodes | Day | #{day_count} | |
Nodes | Week | #{week_count} | |
Nodes | Month | #{month_count} | |
Nodes | #{day_count} | #{week_count} | #{month_count} |