Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Reindex table for sukebei and nyaa (Fix #914) (#916)

Cette révision appartient à :
tomleb 2017-06-04 18:43:52 -04:00 révisé par ewhal
Parent 341bb5c152
révision ace214b035
2 fichiers modifiés avec 2 ajouts et 2 suppressions

Voir le fichier

@ -23,7 +23,7 @@ pgconn = psycopg2.connect(dbparams)
cur = pgconn.cursor()
# We MUST use NO QUERY CACHE because the values are insert on triggers and
# not through pgppool.
cur.execute("""/*NO QUERY CACHE*/ SELECT reindex_torrents_id, torrent_id, action FROM reindex_torrents""")
cur.execute('/*NO QUERY CACHE*/ SELECT reindex_torrents_id, torrent_id, action FROM reindex_{torrent_tablename}'.format(torrent_tablename=torrent_tablename))
fetches = cur.fetchmany(CHUNK_SIZE)
while fetches:

Voir le fichier

@ -3,7 +3,7 @@
CREATE TYPE torrents_action AS ENUM ('index', 'delete');
CREATE TABLE IF NOT EXISTS reindex_torrents (
CREATE TABLE IF NOT EXISTS reindex_{{ nyaapantsu_torrent_tablename }} (
reindex_torrents_id SERIAL,
torrent_id int,
action torrents_action