Skip to content

Commit

Permalink
where not exists does not work in mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Oct 16, 2007
1 parent 703f9e7 commit dcd05f7
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 @@ -46,9 +46,9 @@
<value>${sync.table.prefix}_node_group_link</value>
<value>${sync.table.prefix}_node</value>
<value>${sync.table.prefix}_node_security</value>
<value>${sync.table.prefix}_node_channel_ctl</value>
<value>${sync.table.prefix}_global_parameter</value>
<value>${sync.table.prefix}_channel</value>
<value>${sync.table.prefix}_node_channel_ctl</value>
<value>${sync.table.prefix}_trigger</value>
</list>
</property>
Expand Down Expand Up @@ -534,7 +534,7 @@
create_time &lt; ?
</value>
<value>
delete from ${sync.table.prefix}_data where create_time &lt; ?
delete from ${sync.table.prefix}_data where data_id not in (select data_id from ${sync.table.prefix}_data_event) and create_time &lt; ?
</value>
<value>
delete from ${sync.table.prefix}_incoming_batch_hist where batch_id in (select
Expand Down

0 comments on commit dcd05f7

Please sign in to comment.