Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release History

## Unreleased

### Snowpark Python API Updates

#### Documentation

- Clarified that the JDBC driver JAR referenced via `udtf_configs.imports` in `DataFrameReader.jdbc()` must be downloaded from the database vendor and uploaded to a Snowflake stage.

## 1.51.0 (2026-05-18)

### Snowpark Python API Updates
Expand Down
2 changes: 2 additions & 0 deletions src/snowflake/snowpark/dataframe_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1894,6 +1894,8 @@ def jdbc(

- imports (List[str], required): A list of stage file names to import into the UDTF.
Please include Jar file of jdbc driver to establish connection to external data source.
Download the driver JAR from the database vendor and upload it to a Snowflake stage
before referencing it here.

- java_version (int, optional): A integer that indicate the java runtime version of udtf.
By default, we use java 17.
Expand Down
Loading