Limit number of imported places, not number of imported rows. Default to 1000.
This commit is contained in:
parent
5836b1867e
commit
2a55b138f6
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@
|
|||
places-connection
|
||||
["SELECT DISTINCT p.id AS id, p.url AS url, p.title AS title, p.visit_count, p.last_visit_date, p.guid,
|
||||
hv.visit_date
|
||||
FROM moz_places AS p LEFT JOIN moz_historyvisits AS hv ON p.id = hv.place_id
|
||||
FROM (SELECT * FROM moz_places LIMIT 1000) AS p LEFT JOIN moz_historyvisits AS hv ON p.id = hv.place_id
|
||||
WHERE p.hidden = 0
|
||||
ORDER BY p.id, hv.visit_date"]))]
|
||||
(<?
|
||||
|
|
Loading…
Reference in a new issue