Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public SuccessResponse<Boolean> endBatchCompile(@PathVariable String id) {
@ApiOperation(value = "get result for batchCompile", notes = "获取批量编译PL对象的结果")
@RequestMapping(value = {"/{sessionId}/databases/{databaseName}/batchCompilations/{id}",
"/{sessionId}/currentDatabase/batchCompilations/{id}"}, method = RequestMethod.GET)
@StatefulRoute(stateName = StateName.DB_SESSION, stateIdExpression = "#sessionId")
@StatefulRoute(stateName = StateName.DB_SESSION, stateIdExpression = "#id")
public SuccessResponse<BatchCompileResp> getBatchCompileResult(@PathVariable String id) {
return Responses.success(plService.getBatchCompileResult(id));
}
Expand Down