Skip to content

Commit

Permalink
fixed purge sql for sym_data
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Oct 16, 2007
1 parent 0fec4c2 commit 6e2cedf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions symmetric/src/main/resources/symmetric-services.xml
Expand Up @@ -534,8 +534,8 @@
create_time < ?
</value>
<value>
delete from ${sync.table.prefix}_data where create_time &lt; ? and not exists
(select data_id from ${sync.table.prefix}_data_event)
delete from ${sync.table.prefix}_data d where create_time &lt; ? and not exists
(select data_id from ${sync.table.prefix}_data_event e where e.data_id=d.data_id)
</value>
<value>
delete from ${sync.table.prefix}_incoming_batch_hist where batch_id in (select
Expand Down

0 comments on commit 6e2cedf

Please sign in to comment.