Skip to content

Commit

Permalink
0004193: Tables with zero rows are stuck in "active tables" column
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Dec 10, 2019
1 parent 2425afa commit 766cba8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -68,7 +68,7 @@ public DataExtractorServiceSqlMap(IDatabasePlatform platform,

putSql("cancelExtractRequests", "update $(extract_request) set status=?, last_update_time=current_timestamp where load_id = ?");

putSql("selectIncompleteTablesForExtractByLoadId", "select * from $(extract_request) where load_id = ? and loaded_time is null order by request_id desc");
putSql("selectIncompleteTablesForExtractByLoadId", "select * from $(extract_request) where load_id = ? and loaded_time is null order by request_id");

putSql("selectCompletedTablesForExtractByLoadId", "select * from $(extract_request) where load_id = ? and loaded_time is not null order by request_id");
}
Expand Down

0 comments on commit 766cba8

Please sign in to comment.