Skip to content

Commit

Permalink
Merge branch 'main' into jdu-SNOW-1732002-disable-cte
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jdu authored Oct 10, 2024
2 parents f63e53c + 661f8b1 commit 9167787
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Release History

## 1.23.0 (TBD)
## 1.24.0 (TBD)

### Snowpark Python API Updates

#### New Features

### Snowpark pandas API Updates

#### New Features

## 1.23.0 (2024-10-09)

### Snowpark Python API Updates

Expand Down
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "snowflake-snowpark-python" %}
{% set version = "1.22.1" %}
{% set version = "1.23.0" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion src/snowflake/snowpark/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
#

# Update this for the versions
VERSION = (1, 22, 1)
VERSION = (1, 23, 0)
4 changes: 2 additions & 2 deletions tests/integ/scala/test_snowflake_plan_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def test_plan_num_duplicate_nodes_describe_query(session, temp_table):
assert len(query_history.queries) == 1


def test_create_scoped_temp_table(session, sql_simplifier_enabled):
def test_create_scoped_temp_table(session):
table_name = Utils.random_name_for_temp_object(TempObjectType.TABLE)
try:
Utils.create_table(session, table_name, "num int, str string(8)")
Expand Down Expand Up @@ -310,7 +310,7 @@ def test_create_scoped_temp_table(session, sql_simplifier_enabled):
)
inner_select_sql = (
f" SELECT * FROM {table_name}"
if sql_simplifier_enabled
if session._sql_simplifier_enabled
else f" SELECT * FROM ({table_name})"
)
assert (
Expand Down

0 comments on commit 9167787

Please sign in to comment.