mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Commenting out sql comments. This should have been handled.
This commit is contained in:
parent
e7b7036cd2
commit
da0060fb43
1 changed files with 2 additions and 0 deletions
|
@ -19,12 +19,14 @@ class Command(BaseCommand):
|
|||
cursor.execute("""SELECT DISTINCT f.id AS original_id, f2.id AS duplicate_id,
|
||||
f.feed_address AS original_feed_address,
|
||||
f2.feed_address AS duplicate_feed_address
|
||||
"""
|
||||
# f.feed_title AS original_feed_title,
|
||||
# f2.feed_title AS duplicate_feed_title,
|
||||
# f.feed_link AS original_feed_link,
|
||||
# f2.feed_link AS duplicate_feed_link,
|
||||
# f2.feed_tagline AS original_feed_tagline,
|
||||
# f.feed_tagline AS duplicate_feed_tagline
|
||||
"""
|
||||
FROM stories s1
|
||||
INNER JOIN stories s2 ON s1.story_guid_hash = s2.story_guid_hash
|
||||
INNER JOIN feeds f ON f.id = s1.story_feed_id
|
||||
|
|
Loading…
Add table
Reference in a new issue