Skip to content

Commit 9553e73

Browse files
author
fangbo.0511
committed
Minor update
1 parent 41dc2d2 commit 9553e73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lance-spark-base_2.12/src/test/java/com/lancedb/lance/spark/update/BaseAddColumnsBackfillTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ public void testAddColumnsBackfill() {
8686
.withColumn("new_col1", functions.expr("id * 100"))
8787
.withColumn("new_col2", functions.expr("id * 2"));
8888

89-
df2.createOrReplaceTempView("test");
89+
df2.createOrReplaceTempView("tmp_view");
9090
spark
9191
.sql(
9292
"alter table "
9393
+ catalogName
9494
+ ".default."
9595
+ tableName
96-
+ " add columns new_col1, new_col2 from test")
96+
+ " add columns new_col1, new_col2 from tmp_view")
9797
.collectAsList();
9898

9999
Assertions.assertEquals(

0 commit comments

Comments
 (0)