Skip to content

Commit

Permalink
fix uts
Browse files Browse the repository at this point in the history
  • Loading branch information
taiyang-li committed Aug 15, 2024
1 parent 39ee9ca commit 05e9eef
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -934,8 +934,8 @@ class GlutenClickHouseNativeWriteTableSuite
|) stored as $format;
""".stripMargin
val insert_sql =
s"""INSERT overwrite $table_name VALUES
| (id, null, null, null) from range(10);
s"""INSERT overwrite $table_name
| select id, null, null, null from range(10);
""".stripMargin
val select_sql = s"select * from $table_name"
val drop_sql = s"drop table $table_name"
Expand Down

0 comments on commit 05e9eef

Please sign in to comment.