Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Huaxin Gao committed Apr 10, 2024
1 parent ebfb29b commit 5324464
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1008,9 +1008,9 @@ class CometAggregateSuite extends CometTestBase with AdaptiveSparkPlanHelper {
withTable(table) {
sql(
s"create table $table(col1 int, col2 int, col3 int, col4 float, col5 double," +
s" col6 double, col7 int) using parquet")
" col6 double, col7 int) using parquet")
sql(s"insert into $table values(1, 4, null, 1.1, 2.2, null, 1)," +
s" (2, 5, 6, 3.4, 5.6, null, 1), (3, 6, null, 7.9, 2.4, null, 2)")
" (2, 5, 6, 3.4, 5.6, null, 1), (3, 6, null, 7.9, 2.4, null, 2)")
val expectedNumOfCometAggregates = 2
checkSparkAnswerAndNumOfAggregates(
"SELECT covar_samp(col1, col2), covar_samp(col1, col3), covar_samp(col4, col5)," +
Expand Down

0 comments on commit 5324464

Please sign in to comment.