Query for messages needing contact extraction.
This commit is contained in:
parent
8021820311
commit
8fb345cfb1
11
pg/messages-needing-contact-extraction.sql
Normal file
11
pg/messages-needing-contact-extraction.sql
Normal file
@ -0,0 +1,11 @@
|
||||
SELECT
|
||||
uid,
|
||||
original.hash AS hash,
|
||||
header_size,
|
||||
total_size
|
||||
FROM
|
||||
original
|
||||
LEFT
|
||||
JOIN contact ON original.hash = contact.hash
|
||||
WHERE
|
||||
contact.hash IS NULL;
|
||||
Loading…
x
Reference in New Issue
Block a user