Skip to content

Commit

Permalink
fix to SAK-11821:remove the line break
Browse files Browse the repository at this point in the history
git-svn-id: https://source.sakaiproject.org/svn/assignment/trunk@37398 66ffb92e-73f9-0310-93c1-f5514f145a0a
  • Loading branch information
zqian committed Oct 26, 2007
1 parent a023e6d commit 3f7977c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions assignment/upgradeschema_oracle.config
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ convert.2.handler.class=org.sakaiproject.assignment.impl.conversion.impl.RemoveD
convert.2.create.migrate.table=create table assn_dupes_fsregister (id VARCHAR(99), STATUS VARCHAR(99))
convert.2.drop.migrate.table=drop table assn_dupes_fsregister
convert.2.check.migrate.table=select count(*) from assn_dupes_fsregister where status <> 'done'
convert.2.select.next.batch=select id from assn_dupes_fsregister where status =
'pending' and rownum <= 100
convert.2.select.next.batch=select id from assn_dupes_fsregister where status ='pending' and rownum <= 100
convert.2.complete.next.batch=update assn_dupes_fsregister set status = 'done' where id = ?
convert.2.mark.next.batch=update assn_dupes_fsregister set status = 'locked' where id = ?
convert.2.populate.migrate.table=insert into assn_dupes_fsregister (id,status) select SUBMISSION_ID,'pending' from ASSIGNMENT_SUBMISSION where (CONTEXT,SUBMITTER_ID) = any (select CONTEXT,SUBMITTER_ID from ASSIGNMENT_SUBMISSION group by CONTEXT,SUBMITTER_ID HAVING count(SUBMISSION_ID) > 1) and KEEP <> 'T'
Expand Down

0 comments on commit 3f7977c

Please sign in to comment.