Skip to content

Commit

Permalink
support rsa key
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bli committed Dec 13, 2023
1 parent 063f8e2 commit 920e6de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions fips-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,7 @@
--add-opens=java.base/java.util=ALL-UNNAMED
--add-exports=java.base/sun.nio.ch=ALL-UNNAMED
--add-exports=jdk.unsupported/sun.misc=ALL-UNNAMED
--add-opens=java.base/sun.security.util=ALL-UNNAMED
</argLine>
</configuration>
</plugin>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,7 @@
--add-opens=java.base/java.util=ALL-UNNAMED
--add-exports=java.base/sun.nio.ch=ALL-UNNAMED
--add-exports=jdk.unsupported/sun.misc=ALL-UNNAMED
--add-opens=java.base/sun.security.util=ALL-UNNAMED
</argLine>
</configuration>
</plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ class UDXRegistrationHandler(session: Session) extends Logging {
} else ""
val createUdfQuery = s"CREATE $tempType " +
s"FUNCTION $udfName($sqlFunctionArgs) RETURNS " +
s"$returnSqlType LANGUAGE JAVA $getRuntimeVersion" +
s"$returnSqlType LANGUAGE JAVA $getRuntimeVersion " +
s"$importSql HANDLER='$className.$methodName' " +
s"target_path='$targetJarStageLocation' " + packageSql +
"AS $$ \n" + code + "\n$$"
Expand Down

0 comments on commit 920e6de

Please sign in to comment.