-
Notifications
You must be signed in to change notification settings - Fork 971
Closed
Milestone
Description
Describe the bug
In SparkOperation, all order actually are treat as FETCH_NEXT
override def getNextRowSet(order: FetchOrientation, rowSetSize: Int): TRowSet = {
validateDefaultFetchOrientation(order)
assertState(OperationState.FINISHED)
setHasResultSet(true)
val taken = iter.take(rowSetSize)
RowSet.toTRowSet(taken.toList, resultSchema, getProtocolVersion)
}
To Reproduce
Use HUE to connect Kyuubi server and run a query, then export the result to csv, we found the records showed in web page is lost in exported data.
Expected behavior
Hue can export all records of query result.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
yaooqinn