Skip to content

Commit

Permalink
Review
Browse files Browse the repository at this point in the history
  • Loading branch information
vatj committed Jul 5, 2024
1 parent 8a31eab commit 3eadc2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/hsfs/engine/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ def register_hudi_temporary_table(
or hudi_fg_alias.left_feature_group_start_timestamp is not None
):
raise FeatureStoreException(
"Incremental queries not supported in the python client."
"Incremental queries are not supported in the python client."
+ " Read feature group without timestamp to retrieve latest snapshot or switch to "
+ "environment with Spark Engine."
)
Expand Down
4 changes: 2 additions & 2 deletions python/tests/engine/test_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ def test_register_hudi_temporary_table_time_travel(self):

# Assert
assert str(e_info.value) == (
"Incremental queries not supported in the python client."
"Incremental queries are not supported in the python client."
+ " Read feature group without timestamp to retrieve latest snapshot or switch to "
+ "environment with Spark Engine."
)
Expand Down Expand Up @@ -893,7 +893,7 @@ def test_register_hudi_temporary_table_time_travel_sub_query(self):

# Assert
assert str(e_info.value) == (
"Incremental queries not supported in the python client."
"Incremental queries are not supported in the python client."
+ " Read feature group without timestamp to retrieve latest snapshot or switch to "
+ "environment with Spark Engine."
)
Expand Down

0 comments on commit 3eadc2d

Please sign in to comment.