gatorsmile commented on a change in pull request #24743: [WIP][SPARK-27883][SQL] Port AGGREGATES.sql [Part 2] URL: https://github.com/apache/spark/pull/24743#discussion_r289277446
########## File path: sql/core/src/test/resources/sql-tests/results/pgSQL/aggregates_part2.sql.out ########## @@ -0,0 +1,320 @@ +-- Automatically generated by SQLQueryTestSuite +-- Number of queries: 28 + + +-- !query 0 +-- boolean and transitions + -- null because strict + -- and actual computations + + -- boolean or transitions + -- null because strict + -- actual computations + + + + + + + + +explain + select min(unique1) from tenk1 +-- !query 0 schema +struct<plan:string> +-- !query 0 output +== Physical Plan == +*HashAggregate(keys=[], functions=[min(unique1#x)]) ++- *HashAggregate(keys=[], functions=[partial_min(unique1#x)]) + +- *Project [unique1#x] + +- *BatchScan[unique1#x] CSVScan Location: InMemoryFileIndex[file:/Users/yumwang/SPARK-27883/spark/sql/core/target/scala-2.12/test-classes/t..., ReadSchema: struct<unique1:int> Review comment: we do not need it. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
