Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4088437

Browse files
committedJul 13, 2018
fix sql queries
1 parent e836f1e commit 4088437

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎src/main/resources/sql/mm-feeder-into-challenges/get_marathon_match_winners.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ SELECT u.handle as submitter,
44
cs.long_component_state_id || s.submission_number as submissionId,
55
rr.point_total as points,
66
u.handle_lower
7-
FROM long_comp_result rr
7+
FROM informixoltp\:long_comp_result rr
88
, user u
9-
, long_component_state cs
10-
, outer (long_submission s)
9+
, informixoltp\:long_component_state cs
10+
, outer (informixoltp\:long_submission s)
1111
WHERE rr.attended = 'Y'
1212
and rr.coder_id = u.user_id
1313
and cs.coder_id = u.user_id

‎src/main/resources/sql/mm-feeder-into-challenges/get_marathon_matches_for_challenge_listing.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ r.round_id as id,
33
r.round_id as challengeId,
44
c.name || ' - ' || r.name as challengeTitle,
55
'DATA_SCIENCE' as track,
6-
'Marathon Match' as subTrack,
6+
'MARATHON_MATCH' as subTrack,
77
r.tc_direct_project_id as projectId,
88
tcdirect.name as projectName,
99
'system' as createdBy,

0 commit comments

Comments
 (0)
This repository has been archived.