Description
See the test "with location" in v2.AlterTableRenamePartitionSuite:
val loc = "location1" sql(s"ALTER TABLE $t ADD PARTITION (id = 2) LOCATION '$loc'") checkLocation(t, Map("id" -> "2"), loc) sql(s"INSERT INTO $t PARTITION (id = 2) SELECT 'def'") checkLocation(t, Map("id" -> "2"), loc)
The second check must not fail.