Skip to content

Commit

Permalink
Revert CreateCheckpointSuite fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaschat-db committed Jul 9, 2024
1 parent 9ee0a8c commit b5d106d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class CreateCheckpointSuite extends DeltaTableWriteSuiteBase {
spark.sql(
s"""
|ALTER TABLE delta.`$tablePath` SET TBLPROPERTIES (
| 'delta.minReaderVersion' = '1',
| 'delta.minReaderVersion' = '2',
| 'delta.minWriterVersion' = '2'
|)
|""".stripMargin) // makes the latest table version 16
Expand All @@ -170,7 +170,7 @@ class CreateCheckpointSuite extends DeltaTableWriteSuiteBase {
.select("protocol.minReaderVersion", "protocol.minWriterVersion")
.collect().toSeq.map(TestRow(_))

val expected = Seq(TestRow(1, 2))
val expected = Seq(TestRow(2, 2))

checkAnswer(result, expected)
}
Expand Down

0 comments on commit b5d106d

Please sign in to comment.