-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into jiadong-improve-compilation
- Loading branch information
Showing
20 changed files
with
676 additions
and
538 deletions.
There are no files selected for viewing
12 changes: 6 additions & 6 deletions
12
...r/src/main/scala/edu/uci/ics/texera/web/model/websocket/request/ResultExportRequest.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package edu.uci.ics.texera.web.model.websocket.request | ||
|
||
case class ResultExportRequest( | ||
exportType: String, | ||
exportType: String, // e.g. "csv", "google_sheet", "arrow", "data" | ||
workflowId: Int, | ||
workflowName: String, | ||
operatorId: String, | ||
operatorName: String, | ||
operatorIds: List[String], // changed from single operatorId: String -> List of strings | ||
datasetIds: List[Int], | ||
rowIndex: Int, | ||
columnIndex: Int, | ||
filename: String | ||
rowIndex: Int, // used by "data" export | ||
columnIndex: Int, // used by "data" export | ||
filename: String, // optional filename override | ||
destination: String // "dataset" or "local" | ||
) |
4 changes: 1 addition & 3 deletions
4
...src/main/scala/edu/uci/ics/texera/web/model/websocket/response/ResultExportResponse.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
package edu.uci.ics.texera.web.model.websocket.response | ||
|
||
import edu.uci.ics.texera.web.model.websocket.event.TexeraWebSocketEvent | ||
|
||
case class ResultExportResponse(status: String, message: String) extends TexeraWebSocketEvent | ||
case class ResultExportResponse(status: String, message: String) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.