bobbai00 commented on code in PR #6009:
URL: https://github.com/apache/texera/pull/6009#discussion_r3563569512
##########
amber/src/main/scala/org/apache/texera/web/resource/SyncExecutionResource.scala:
##########
@@ -73,38 +81,48 @@ case class SyncExecutionRequest(
maxOperatorResultCellCharLimit: Int
)
-case class ConsoleMessageInfo(
+@Generated
+case class ConsoleMessageSummary(
msgType: String,
title: String,
message: String
)
-case class PortShape(
- portIndex: Int,
- rows: Long
+// One sampled output row: the original row position plus the row's columns as
a
+// processed/truncated JSON object (not a raw engine Tuple, which would
serialize
+// as {schema, fields[]} and bypass the type-aware conversion + cell
truncation).
+// The index is carried explicitly rather than embedded in the tuple.
+@Generated
+case class SampleRow(
+ rowIndex: Int,
+ tuple: ObjectNode
Review Comment:
changed to TUple
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]