Skip to content

Commit

Permalink
SNOW-1439789: Replace LIMITEDACCESS doc links with public links (#1749)
Browse files Browse the repository at this point in the history
Signed-off-by: Naren Krishna <[email protected]>
  • Loading branch information
sfc-gh-nkrishna authored Jun 10, 2024
1 parent 23db87b commit 6d3453c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@

#### New Features

- Start of Public Preview of Snowpark pandas API. Refer to the [Snowpark pandas API Docs](https://docs.snowflake.com/LIMITEDACCESS/snowpark-pandas) for more details.
- Start of Public Preview of Snowpark pandas API. Refer to the [Snowpark pandas API Docs](https://docs.snowflake.com/developer-guide/snowpark/python/snowpark-pandas) for more details.

### Snowpark Local Testing Updates

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ Please refer to [CONTRIBUTING.md][contributing].

[Snowpark Python developer guide]: https://docs.snowflake.com/en/developer-guide/snowpark/python/index.html
[Snowpark Python api references]: https://docs.snowflake.com/en/developer-guide/snowpark/reference/python/index.html
[Snowpark pandas developer guide]: https://docs.snowflake.com/LIMITEDACCESS/snowpark-pandas
[Snowpark pandas api references]: https://docs.snowflake.com/en/LIMITEDACCESS/snowpark-pandas-api/reference/index.html
[Snowpark pandas developer guide]: https://docs.snowflake.com/developer-guide/snowpark/python/snowpark-pandas
[Snowpark pandas api references]: https://docs.snowflake.com/developer-guide/snowpark/reference/python/latest/modin/index
[snowpark]: https://www.snowflake.com/snowpark
[sign up trial]: https://signup.snowflake.com
[source code]: https://github.com/snowflakedb/snowpark-python
Expand Down
2 changes: 1 addition & 1 deletion src/snowflake/snowpark/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -2211,7 +2211,7 @@ def join(
You can reference to these randomly named columns using :meth:`Column.alias` (See the first usage in Examples).
See Also:
- Usage notes for asof join: https://docs.snowflake.com/LIMITEDACCESS/asof-join#usage-notes
- Usage notes for asof join: https://docs.snowflake.com/sql-reference/constructs/asof-join#usage-notes
Examples::
>>> from snowflake.snowpark.functions import col
Expand Down
2 changes: 1 addition & 1 deletion src/snowflake/snowpark/modin/plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

warnings.warn(
"Snowpark pandas has been in Public Preview since 1.17.0."
+ " See https://docs.snowflake.com/LIMITEDACCESS/snowpark-pandas for details.", # TODO: SNOW-1326280 update link
+ " See https://docs.snowflake.com/developer-guide/snowpark/python/snowpark-pandas for details.",
stacklevel=1,
)

Expand Down
2 changes: 1 addition & 1 deletion src/snowflake/snowpark/udaf.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def _create_udaf_expression(self, exprs: List[Expression]) -> SnowflakeUDF:
class UDAFRegistration:
"""
Provides methods to register lambdas and functions as UDAFs in the Snowflake database.
For more information about Snowflake Python UDAFs, see `Python UDAFs <https://docs.snowflake.com/en/LIMITEDACCESS/python-aggregate-functions>`__.
For more information about Snowflake Python UDAFs, see `Python UDAFs <https://docs.snowflake.com/developer-guide/udf/python/udf-python-aggregate-functions>`__.
:attr:`session.udaf <snowflake.snowpark.Session.udaf>` returns an object of this class.
You can use this object to register UDAFs that you plan to use in the current session or
Expand Down

0 comments on commit 6d3453c

Please sign in to comment.