Skip to content

Commit

Permalink
disable package tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bli committed Mar 8, 2024
1 parent 8d3626d commit 261cc3b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/snowflake/snowpark_java/SessionBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ public Session getOrCreate() {
}

/**
* Adds the app name to set in the query_tag after session creation.
* The query tag will be set with this format 'APPNAME=${appName}'.
* Adds the app name to set in the query_tag after session creation. The query tag will be set
* with this format 'APPNAME=${appName}'.
*
* @param appName Name of the app.
* @return A {@code SessionBuilder} object
Expand Down
1 change: 0 additions & 1 deletion src/main/scala/com/snowflake/snowpark/Session.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1410,7 +1410,6 @@ object Session extends Logging {
this
}


/**
* Adds the app name to set in the query_tag after session creation.
* The query tag will be set with this format 'APPNAME=${appName}'.
Expand Down
8 changes: 8 additions & 0 deletions src/test/scala/com/snowflake/snowpark/UDFInternalSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,13 @@ class UDFInternalSuite extends TestData {
}
}

// todo: re-enable in SNOW-1227362
// The new Geometry data type introduced in the release 1.12.0.
// The package suites use the latest Snowpark package on the server side,
// which doesn't have Geometry type, then, all package suites will fail
// before the server side release. So we have to temporarily disable those test suite
// until Snowpark 1.12.0 release.
/*
@UDFPackageTest
class PackageUDFSuite extends UDFSuite {
override def beforeAll: Unit = {
Expand Down Expand Up @@ -214,3 +221,4 @@ class PackageUDTFSuite extends UDTFSuite {
super.afterAll()
}
}
*/

0 comments on commit 261cc3b

Please sign in to comment.