Skip to content

Commit

Permalink
Revert "#110 | Optimize MediaTable Duplicate sql"
Browse files Browse the repository at this point in the history
This reverts commit fccaeed.
  • Loading branch information
himeshr committed Jan 9, 2025
1 parent d233d7e commit 93f4779
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/resources/sql/etl/deleteDuplicateMedia.sql.st
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,5 @@ where uuid in (
from "<schemaName>"."media" t1
inner join "<schemaName>"."media" t2 on
t1.uuid = t2.uuid
and t1.last_modified_date_time \<= :lastSyncTime
and t2.last_modified_date_time > :lastSyncTime
and t1.last_modified_date_time \< t2.last_modified_date_time)
and last_modified_date_time \<= :lastSyncTime;

0 comments on commit 93f4779

Please sign in to comment.