Zhen had a working fix for the UDP query on this other PR, should close this PR and open a new one with the fix
Hmm, I pulled the list of all the course ids to use from our production to substitute in `%(course_ids)s` there are 537 courses defined there.
SET SESSION group_concat_max_len = 16384;
select CONCAT("'", GROUP_CONCAT(id order by id SEPARATOR "','"), "'") from course where id is not null order by id;
The query on the PR 'as-is' only seems to return 51 rows, the query Zhen proposed returns 537 rows, our original query returns 537 rows.
So I'd probably close this one and @zqian can open one with her change.
Zhen had a working fix for the UDP query on this other PR, should close this PR and open a new one with the fix
The query on the PR 'as-is' only seems to return 51 rows, the query Zhen proposed returns 537 rows, our original query returns 537 rows.
So I'd probably close this one and @zqian can open one with her change.
Originally posted by @jonespm in https://github.com/tl-its-umich-edu/my-learning-analytics/issues/1499#issuecomment-1507523240