We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 356561c commit 8ef3a65Copy full SHA for 8ef3a65
config/cron_udp.hjson
@@ -206,6 +206,7 @@
206
''',
207
"submission":
208
'''
209
+ create temporary table all_assign_sub as (
210
with enrollment as
211
(
212
select
@@ -250,9 +251,7 @@
250
251
where
252
co.lms_int_id in %(course_ids)s
253
and la.status = 'published'
- ),
254
- all_assign_sub as
255
- (
+ )
256
257
cast(submission_id as BIGINT) AS id,
258
assignment_id AS assignment_id,
@@ -271,10 +270,9 @@
271
270
submitted_at AS submitted_at,
272
graded_at AS graded_date,
273
grade_posted_local_date
274
- from
275
- submission
276
- order by assignment_id
277
- )
+ from
+ submission
+ );
278
279
f.id::bigint,
280
f.assignment_id::bigint assignment_id,
0 commit comments