Skip to content

Commit

Permalink
spotless fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xuyu committed Apr 10, 2024
1 parent 7ccd355 commit f3ce901
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,11 @@ abstract class AnalyzeTableTestBase extends PaimonSparkTestBase {

spark.sql(s"ANALYZE TABLE T COMPUTE STATISTICS")

val df = spark.sql("select snapshot_id, schema_id, schema_id, colstat from `T$statistics`")
val df =
spark.sql("select snapshot_id, schema_id, mergedRecordCount, colstat from `T$statistics`")
Assertions.assertEquals(df.collect().size, 1)
checkAnswer(
spark.sql("SELECT snapshot_id, schema_id, schema_id, colstat from `T$statistics`"),
spark.sql("SELECT snapshot_id, schema_id, mergedRecordCount, colstat from `T$statistics`"),
Row(2, 0, 2, "{ }"))
}

Expand Down

0 comments on commit f3ce901

Please sign in to comment.