Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
Zouxxyy committed Dec 6, 2024
1 parent 2b06481 commit 1393ef0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -536,8 +536,7 @@ abstract class InsertOverwriteTableTestBase extends PaimonSparkTestBase {
checkAnswer(sql("SELECT * FROM T ORDER BY name"), Row("f", null, "Shanghai"))

// insert overwrite with both a partition spec and a column list
sql(
"INSERT OVERWRITE T PARTITION (address='Shanghai') (name, student_id) VALUES ('g', 7)")
sql("INSERT OVERWRITE T PARTITION (address='Shanghai') (name, student_id) VALUES ('g', 7)")
checkAnswer(sql("SELECT * FROM T ORDER BY name"), Row("g", 7, "Shanghai"))
}
}

0 comments on commit 1393ef0

Please sign in to comment.