Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
10f062cf
Commit
10f062cf
authored
Jul 18, 2013
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Records should be sorted by created,id so that timestamp ties will be broken by id.
parent
83cb3d19
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
1 deletions
+25
-1
lms/djangoapps/courseware/management/commands/clean_history.py
+1
-1
lms/djangoapps/courseware/management/tests/test_clean_history.py
+24
-0
No files found.
lms/djangoapps/courseware/management/commands/clean_history.py
View file @
10f062cf
...
...
@@ -180,7 +180,7 @@ class StudentModuleHistoryCleaner(object):
cursor
.
execute
(
"""
SELECT id, created FROM courseware_studentmodulehistory
WHERE student_module_id =
%
s
ORDER BY created
ORDER BY created
, id
"""
,
[
student_module_id
]
)
...
...
lms/djangoapps/courseware/management/tests/test_clean_history.py
View file @
10f062cf
...
...
@@ -313,6 +313,30 @@ class HistoryCleanerWitDbTest(HistoryCleanerTest):
(
56
,
"2013-07-13 16:30:00.000"
,
11
),
# keep
])
def
test_a_bunch_of_rows_with_timestamp_ties
(
self
):
# Sometimes rows are written with identical timestamps. The one with
# the greater id is the winner in that case.
smhc
=
SmhcSayStubbed
()
self
.
write_history
([
(
21
,
"2013-07-13 16:30:01.100"
,
11
),
(
24
,
"2013-07-13 16:30:01.100"
,
11
),
# keep
(
22
,
"2013-07-13 16:30:01.100"
,
11
),
(
23
,
"2013-07-13 16:30:01.100"
,
11
),
(
27
,
"2013-07-13 16:30:02.500"
,
11
),
(
30
,
"2013-07-13 16:30:01.350"
,
22
),
# other student_module_id!
(
32
,
"2013-07-13 16:30:59.000"
,
11
),
# keep
(
50
,
"2013-07-13 16:30:02.500"
,
11
),
# keep
])
smhc
.
clean_one_student_module
(
11
)
self
.
assert_said
(
smhc
,
"Deleting 4 rows of 7 for student_module_id 11"
)
self
.
assert_history
([
(
24
,
"2013-07-13 16:30:01.100"
,
11
),
# keep
(
30
,
"2013-07-13 16:30:01.350"
,
22
),
# other student_module_id!
(
32
,
"2013-07-13 16:30:59.000"
,
11
),
# keep
(
50
,
"2013-07-13 16:30:02.500"
,
11
),
# keep
])
def
test_get_last_student_module
(
self
):
# Can we find the last student_module_id properly?
smhc
=
SmhcSayStubbed
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment