Skip to content

Commit

Permalink
use ANSI SQL. (derby didn't like the query)
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Dec 10, 2007
1 parent a864572 commit 415fe9b
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 @@ -76,8 +76,8 @@
<value>
select c.channel_id, nc.node_id, nc.ignore_enabled, nc.suspend_enabled,
c.processing_order, c.max_batch_size, c.enabled from ${sync.table.prefix}_channel c
left outer join ${sync.table.prefix}_node_channel_ctl nc on nc.node_id in (select
node_id from ${sync.table.prefix}_node_identity) and c.channel_id=nc.channel_id
left outer join ${sync.table.prefix}_node_channel_ctl nc on c.channel_id=nc.channel_id
where (nc.node_id is null or nc.node_id in (select node_id from ${sync.table.prefix}_node_identity))
order by c.processing_order asc
</value>
</property>
Expand Down

0 comments on commit 415fe9b

Please sign in to comment.