Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bli committed Nov 21, 2023
1 parent 1453f0b commit d923d71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/com/snowflake/snowpark_test/JavaUDTFSuite.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void basicTypes() {
"create or replace temp table "
+ tableName
+ "(i1 smallint, i2 int, l1 bigint, f1 float, d1 double, "
+ "decimal number(38, 18), b boolean, s string, bi binary)";
+ "de number(38, 18), b boolean, s string, bi binary)";
runQuery(crt);
String insert =
"insert into "
Expand All @@ -68,7 +68,7 @@ public void basicTypes() {
col("l1"),
col("f1"),
col("d1"),
col("decimal"),
col("de"),
col("b"),
col("s"),
col("bi"));
Expand All @@ -82,7 +82,7 @@ public void basicTypes() {
.append("|--L1: Long (nullable = true)")
.append("|--F1: Double (nullable = true)")
.append("|--D1: Double (nullable = true)")
.append("|--DECIMAL: Decimal(38, 18) (nullable = true)")
.append("|--DE: Decimal(38, 18) (nullable = true)")
.append("|--B: Boolean (nullable = true)")
.append("|--S: String (nullable = true)")
.append("|--BI: Binary (nullable = true)")
Expand Down

0 comments on commit d923d71

Please sign in to comment.