Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
[SPARK-33463][SQL] getNextRowSetInternal: fixing private function scope
  • Loading branch information
gumartinm committed Nov 16, 2020
commit ac2791a257968d60dfaa0caae7015b3e5c88f156
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ private[hive] class SparkExecuteStatementOperation(
}
}

private def getNextRowSetInternal(order: FetchOrientation, maxRowsL: Long): RowSet = withLocalProperties {
private def getNextRowSetInternal(
order: FetchOrientation,
maxRowsL: Long): RowSet = withLocalProperties {
log.info(s"Received getNextRowSet request order=${order} and maxRowsL=${maxRowsL} " +
s"with ${statementId}")
validateDefaultFetchOrientation(order)
Expand Down