Skip to content
Snippets Groups Projects
Commit a26d7500 authored by mattc's avatar mattc
Browse files

Alter - Pass through (HTTP) request context to the SQL queries.

Allow for queries to early-exit if the requests have been aborted.
parent 3d8cc67f
No related branches found
No related tags found
No related merge requests found
...@@ -537,7 +537,10 @@ func (s *MediaStore) GetUsersUsageStatsForServer( ...@@ -537,7 +537,10 @@ func (s *MediaStore) GetUsersUsageStatsForServer(
orderDirection, orderDirection,
limitClause, limitClause,
offsetClause) offsetClause)
rows, err := s.factory.sqlDb.Query(paginationQuery, append(commonQueryParams, otherPaginationParams...)...) rows, err := s.factory.sqlDb.QueryContext(
s.ctx,
paginationQuery,
append(commonQueryParams, otherPaginationParams...)...)
if err != nil { if err != nil {
return nil, 0, err return nil, 0, err
} }
...@@ -564,7 +567,7 @@ func (s *MediaStore) GetUsersUsageStatsForServer( ...@@ -564,7 +567,7 @@ func (s *MediaStore) GetUsersUsageStatsForServer(
") as count_user_ids; ", ") as count_user_ids; ",
commonQueryPortion) commonQueryPortion)
var totalNumRows int64 = 0 var totalNumRows int64 = 0
err = s.factory.sqlDb.QueryRow(totalQuery, commonQueryParams...).Scan(&totalNumRows) err = s.factory.sqlDb.QueryRowContext(s.ctx, totalQuery, commonQueryParams...).Scan(&totalNumRows)
if err != nil { if err != nil {
return nil, 0, err return nil, 0, err
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment